ib_isert.c 91.3 KB
Newer Older
1 2 3
/*******************************************************************************
 * This file contains iSCSI extentions for RDMA (iSER) Verbs
 *
4
 * (c) Copyright 2013 Datera, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 * Nicholas A. Bellinger <nab@linux-iscsi.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 ****************************************************************************/

#include <linux/string.h>
#include <linux/module.h>
#include <linux/scatterlist.h>
#include <linux/socket.h>
#include <linux/in.h>
#include <linux/in6.h>
#include <rdma/ib_verbs.h>
#include <rdma/rdma_cm.h>
#include <target/target_core_base.h>
#include <target/target_core_fabric.h>
#include <target/iscsi/iscsi_transport.h>
30
#include <linux/semaphore.h>
31 32 33 34 35 36 37

#include "isert_proto.h"
#include "ib_isert.h"

#define	ISERT_MAX_CONN		8
#define ISER_MAX_RX_CQ_LEN	(ISERT_QP_MAX_RECV_DTOS * ISERT_MAX_CONN)
#define ISER_MAX_TX_CQ_LEN	(ISERT_QP_MAX_REQ_DTOS  * ISERT_MAX_CONN)
38 39
#define ISER_MAX_CQ_LEN		(ISER_MAX_RX_CQ_LEN + ISER_MAX_TX_CQ_LEN + \
				 ISERT_MAX_CONN)
40

S
Sagi Grimberg 已提交
41
static int isert_debug_level;
42 43 44
module_param_named(debug_level, isert_debug_level, int, 0644);
MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:0)");

45 46 47
static DEFINE_MUTEX(device_list_mutex);
static LIST_HEAD(device_list);
static struct workqueue_struct *isert_comp_wq;
48
static struct workqueue_struct *isert_release_wq;
49

50 51 52 53 54
static void
isert_unmap_cmd(struct isert_cmd *isert_cmd, struct isert_conn *isert_conn);
static int
isert_map_rdma(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
	       struct isert_rdma_wr *wr);
55
static void
56
isert_unreg_rdma(struct isert_cmd *isert_cmd, struct isert_conn *isert_conn);
57
static int
58 59
isert_reg_rdma(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
	       struct isert_rdma_wr *wr);
60 61
static int
isert_put_response(struct iscsi_conn *conn, struct iscsi_cmd *cmd);
62 63 64 65
static int
isert_rdma_post_recvl(struct isert_conn *isert_conn);
static int
isert_rdma_accept(struct isert_conn *isert_conn);
66
struct rdma_cm_id *isert_setup_id(struct isert_np *isert_np);
67

68 69
static void isert_release_work(struct work_struct *work);

70 71 72
static inline bool
isert_prot_cmd(struct isert_conn *conn, struct se_cmd *cmd)
{
73
	return (conn->pi_support &&
74 75 76 77
		cmd->prot_op != TARGET_PROT_NORMAL);
}


78 79 80
static void
isert_qp_event_callback(struct ib_event *e, void *context)
{
81
	struct isert_conn *isert_conn = context;
82

83 84 85
	isert_err("%s (%d): conn %p\n",
		  ib_event_msg(e->event), e->event, isert_conn);

86 87
	switch (e->event) {
	case IB_EVENT_COMM_EST:
88
		rdma_notify(isert_conn->cm_id, IB_EVENT_COMM_EST);
89 90
		break;
	case IB_EVENT_QP_LAST_WQE_REACHED:
91
		isert_warn("Reached TX IB_EVENT_QP_LAST_WQE_REACHED\n");
92 93 94 95 96 97 98 99 100 101 102 103 104
		break;
	default:
		break;
	}
}

static int
isert_query_device(struct ib_device *ib_dev, struct ib_device_attr *devattr)
{
	int ret;

	ret = ib_query_device(ib_dev, devattr);
	if (ret) {
105
		isert_err("ib_query_device() failed: %d\n", ret);
106 107
		return ret;
	}
108 109
	isert_dbg("devattr->max_sge: %d\n", devattr->max_sge);
	isert_dbg("devattr->max_sge_rd: %d\n", devattr->max_sge_rd);
110 111 112 113

	return 0;
}

114 115
static struct isert_comp *
isert_comp_get(struct isert_conn *isert_conn)
116
{
117
	struct isert_device *device = isert_conn->device;
118
	struct isert_comp *comp;
119
	int i, min = 0;
120 121

	mutex_lock(&device_list_mutex);
122 123 124 125 126 127
	for (i = 0; i < device->comps_used; i++)
		if (device->comps[i].active_qps <
		    device->comps[min].active_qps)
			min = i;
	comp = &device->comps[min];
	comp->active_qps++;
128 129
	mutex_unlock(&device_list_mutex);

130
	isert_info("conn %p, using comp %p min_index: %d\n",
131
		   isert_conn, comp, min);
132 133 134 135 136 137 138 139 140

	return comp;
}

static void
isert_comp_put(struct isert_comp *comp)
{
	mutex_lock(&device_list_mutex);
	comp->active_qps--;
141
	mutex_unlock(&device_list_mutex);
142 143 144 145 146 147 148
}

static struct ib_qp *
isert_create_qp(struct isert_conn *isert_conn,
		struct isert_comp *comp,
		struct rdma_cm_id *cma_id)
{
149
	struct isert_device *device = isert_conn->device;
150 151
	struct ib_qp_init_attr attr;
	int ret;
152 153 154 155

	memset(&attr, 0, sizeof(struct ib_qp_init_attr));
	attr.event_handler = isert_qp_event_callback;
	attr.qp_context = isert_conn;
156 157
	attr.send_cq = comp->cq;
	attr.recv_cq = comp->cq;
158
	attr.cap.max_send_wr = ISERT_QP_MAX_REQ_DTOS;
159
	attr.cap.max_recv_wr = ISERT_QP_MAX_RECV_DTOS + 1;
160 161
	/*
	 * FIXME: Use devattr.max_sge - 2 for max_send_sge as
162 163 164 165
	 * work-around for RDMA_READs with ConnectX-2.
	 *
	 * Also, still make sure to have at least two SGEs for
	 * outgoing control PDU responses.
166
	 */
167
	attr.cap.max_send_sge = max(2, device->dev_attr.max_sge - 2);
168 169 170 171 172
	isert_conn->max_sge = attr.cap.max_send_sge;

	attr.cap.max_recv_sge = 1;
	attr.sq_sig_type = IB_SIGNAL_REQ_WR;
	attr.qp_type = IB_QPT_RC;
173
	if (device->pi_capable)
174
		attr.create_flags |= IB_QP_CREATE_SIGNATURE_EN;
175

176
	ret = rdma_create_qp(cma_id, device->pd, &attr);
177
	if (ret) {
178
		isert_err("rdma_create_qp failed for cma_id %d\n", ret);
179 180 181 182 183 184 185 186 187 188 189 190 191
		return ERR_PTR(ret);
	}

	return cma_id->qp;
}

static int
isert_conn_setup_qp(struct isert_conn *isert_conn, struct rdma_cm_id *cma_id)
{
	struct isert_comp *comp;
	int ret;

	comp = isert_comp_get(isert_conn);
192 193 194
	isert_conn->qp = isert_create_qp(isert_conn, comp, cma_id);
	if (IS_ERR(isert_conn->qp)) {
		ret = PTR_ERR(isert_conn->qp);
195
		goto err;
196 197 198
	}

	return 0;
199
err:
200
	isert_comp_put(comp);
201
	return ret;
202 203 204 205 206
}

static void
isert_cq_event_callback(struct ib_event *e, void *context)
{
207
	isert_dbg("event: %d\n", e->event);
208 209 210 211 212
}

static int
isert_alloc_rx_descriptors(struct isert_conn *isert_conn)
{
213
	struct isert_device *device = isert_conn->device;
214
	struct ib_device *ib_dev = device->ib_device;
215 216 217 218 219
	struct iser_rx_desc *rx_desc;
	struct ib_sge *rx_sg;
	u64 dma_addr;
	int i, j;

220
	isert_conn->rx_descs = kzalloc(ISERT_QP_MAX_RECV_DTOS *
221
				sizeof(struct iser_rx_desc), GFP_KERNEL);
222
	if (!isert_conn->rx_descs)
223 224
		goto fail;

225
	rx_desc = isert_conn->rx_descs;
226 227 228 229 230 231 232 233 234 235 236 237

	for (i = 0; i < ISERT_QP_MAX_RECV_DTOS; i++, rx_desc++)  {
		dma_addr = ib_dma_map_single(ib_dev, (void *)rx_desc,
					ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
		if (ib_dma_mapping_error(ib_dev, dma_addr))
			goto dma_map_fail;

		rx_desc->dma_addr = dma_addr;

		rx_sg = &rx_desc->rx_sg;
		rx_sg->addr = rx_desc->dma_addr;
		rx_sg->length = ISER_RX_PAYLOAD_SIZE;
238
		rx_sg->lkey = device->mr->lkey;
239 240
	}

241
	isert_conn->rx_desc_head = 0;
242

243 244 245
	return 0;

dma_map_fail:
246
	rx_desc = isert_conn->rx_descs;
247 248 249 250
	for (j = 0; j < i; j++, rx_desc++) {
		ib_dma_unmap_single(ib_dev, rx_desc->dma_addr,
				    ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
	}
251 252
	kfree(isert_conn->rx_descs);
	isert_conn->rx_descs = NULL;
253
fail:
254 255
	isert_err("conn %p failed to allocate rx descriptors\n", isert_conn);

256 257 258 259 260 261
	return -ENOMEM;
}

static void
isert_free_rx_descriptors(struct isert_conn *isert_conn)
{
262
	struct ib_device *ib_dev = isert_conn->device->ib_device;
263 264 265
	struct iser_rx_desc *rx_desc;
	int i;

266
	if (!isert_conn->rx_descs)
267 268
		return;

269
	rx_desc = isert_conn->rx_descs;
270 271 272 273 274
	for (i = 0; i < ISERT_QP_MAX_RECV_DTOS; i++, rx_desc++)  {
		ib_dma_unmap_single(ib_dev, rx_desc->dma_addr,
				    ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
	}

275 276
	kfree(isert_conn->rx_descs);
	isert_conn->rx_descs = NULL;
277 278
}

279 280
static void isert_cq_work(struct work_struct *);
static void isert_cq_callback(struct ib_cq *, void *);
281

282 283
static void
isert_free_comps(struct isert_device *device)
284
{
285
	int i;
286

287 288
	for (i = 0; i < device->comps_used; i++) {
		struct isert_comp *comp = &device->comps[i];
289

290 291 292 293
		if (comp->cq) {
			cancel_work_sync(&comp->work);
			ib_destroy_cq(comp->cq);
		}
294
	}
295 296
	kfree(device->comps);
}
297

298 299 300 301 302
static int
isert_alloc_comps(struct isert_device *device,
		  struct ib_device_attr *attr)
{
	int i, max_cqe, ret = 0;
303

304
	device->comps_used = min(ISERT_MAX_CQ, min_t(int, num_online_cpus(),
305 306
				 device->ib_device->num_comp_vectors));

307
	isert_info("Using %d CQs, %s supports %d vectors support "
308 309 310 311 312 313 314 315
		   "Fast registration %d pi_capable %d\n",
		   device->comps_used, device->ib_device->name,
		   device->ib_device->num_comp_vectors, device->use_fastreg,
		   device->pi_capable);

	device->comps = kcalloc(device->comps_used, sizeof(struct isert_comp),
				GFP_KERNEL);
	if (!device->comps) {
316
		isert_err("Unable to allocate completion contexts\n");
317 318
		return -ENOMEM;
	}
319

320 321
	max_cqe = min(ISER_MAX_CQ_LEN, attr->max_cqe);

322
	for (i = 0; i < device->comps_used; i++) {
323
		struct ib_cq_init_attr cq_attr = {};
324 325 326
		struct isert_comp *comp = &device->comps[i];

		comp->device = device;
327
		INIT_WORK(&comp->work, isert_cq_work);
328 329
		cq_attr.cqe = max_cqe;
		cq_attr.comp_vector = i;
330 331 332 333
		comp->cq = ib_create_cq(device->ib_device,
					isert_cq_callback,
					isert_cq_event_callback,
					(void *)comp,
334
					&cq_attr);
335
		if (IS_ERR(comp->cq)) {
336
			isert_err("Unable to allocate cq\n");
337 338
			ret = PTR_ERR(comp->cq);
			comp->cq = NULL;
339
			goto out_cq;
340
		}
341

342
		ret = ib_req_notify_cq(comp->cq, IB_CQ_NEXT_COMP);
343
		if (ret)
344 345 346
			goto out_cq;
	}

347 348 349 350 351 352 353 354 355 356
	return 0;
out_cq:
	isert_free_comps(device);
	return ret;
}

static int
isert_create_device_ib_res(struct isert_device *device)
{
	struct ib_device_attr *dev_attr;
357
	int ret;
358 359

	dev_attr = &device->dev_attr;
360
	ret = isert_query_device(device->ib_device, dev_attr);
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	if (ret)
		return ret;

	/* asign function handlers */
	if (dev_attr->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS &&
	    dev_attr->device_cap_flags & IB_DEVICE_SIGNATURE_HANDOVER) {
		device->use_fastreg = 1;
		device->reg_rdma_mem = isert_reg_rdma;
		device->unreg_rdma_mem = isert_unreg_rdma;
	} else {
		device->use_fastreg = 0;
		device->reg_rdma_mem = isert_map_rdma;
		device->unreg_rdma_mem = isert_unmap_cmd;
	}

	ret = isert_alloc_comps(device, dev_attr);
	if (ret)
		return ret;

380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
	device->pd = ib_alloc_pd(device->ib_device);
	if (IS_ERR(device->pd)) {
		ret = PTR_ERR(device->pd);
		isert_err("failed to allocate pd, device %p, ret=%d\n",
			  device, ret);
		goto out_cq;
	}

	device->mr = ib_get_dma_mr(device->pd, IB_ACCESS_LOCAL_WRITE);
	if (IS_ERR(device->mr)) {
		ret = PTR_ERR(device->mr);
		isert_err("failed to create dma mr, device %p, ret=%d\n",
			  device, ret);
		goto out_mr;
	}

396 397 398
	/* Check signature cap */
	device->pi_capable = dev_attr->device_cap_flags &
			     IB_DEVICE_SIGNATURE_HANDOVER ? true : false;
399

400 401
	return 0;

402 403
out_mr:
	ib_dealloc_pd(device->pd);
404
out_cq:
405
	isert_free_comps(device);
406 407 408 409 410 411
	return ret;
}

static void
isert_free_device_ib_res(struct isert_device *device)
{
412
	isert_info("device %p\n", device);
413

414 415
	ib_dereg_mr(device->mr);
	ib_dealloc_pd(device->pd);
416
	isert_free_comps(device);
417 418 419
}

static void
420
isert_device_put(struct isert_device *device)
421 422 423
{
	mutex_lock(&device_list_mutex);
	device->refcount--;
424
	isert_info("device %p refcount %d\n", device, device->refcount);
425 426 427 428 429 430 431 432 433
	if (!device->refcount) {
		isert_free_device_ib_res(device);
		list_del(&device->dev_node);
		kfree(device);
	}
	mutex_unlock(&device_list_mutex);
}

static struct isert_device *
434
isert_device_get(struct rdma_cm_id *cma_id)
435 436 437 438 439 440 441 442
{
	struct isert_device *device;
	int ret;

	mutex_lock(&device_list_mutex);
	list_for_each_entry(device, &device_list, dev_node) {
		if (device->ib_device->node_guid == cma_id->device->node_guid) {
			device->refcount++;
443 444
			isert_info("Found iser device %p refcount %d\n",
				   device, device->refcount);
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
			mutex_unlock(&device_list_mutex);
			return device;
		}
	}

	device = kzalloc(sizeof(struct isert_device), GFP_KERNEL);
	if (!device) {
		mutex_unlock(&device_list_mutex);
		return ERR_PTR(-ENOMEM);
	}

	INIT_LIST_HEAD(&device->dev_node);

	device->ib_device = cma_id->device;
	ret = isert_create_device_ib_res(device);
	if (ret) {
		kfree(device);
		mutex_unlock(&device_list_mutex);
		return ERR_PTR(ret);
	}

	device->refcount++;
	list_add_tail(&device->dev_node, &device_list);
468 469
	isert_info("Created a new iser device %p refcount %d\n",
		   device, device->refcount);
470 471 472 473 474
	mutex_unlock(&device_list_mutex);

	return device;
}

475
static void
476
isert_conn_free_fastreg_pool(struct isert_conn *isert_conn)
477 478 479 480
{
	struct fast_reg_descriptor *fr_desc, *tmp;
	int i = 0;

481
	if (list_empty(&isert_conn->fr_pool))
482 483
		return;

484
	isert_info("Freeing conn %p fastreg pool", isert_conn);
485 486

	list_for_each_entry_safe(fr_desc, tmp,
487
				 &isert_conn->fr_pool, list) {
488 489 490
		list_del(&fr_desc->list);
		ib_free_fast_reg_page_list(fr_desc->data_frpl);
		ib_dereg_mr(fr_desc->data_mr);
491 492 493
		if (fr_desc->pi_ctx) {
			ib_free_fast_reg_page_list(fr_desc->pi_ctx->prot_frpl);
			ib_dereg_mr(fr_desc->pi_ctx->prot_mr);
494
			ib_dereg_mr(fr_desc->pi_ctx->sig_mr);
495 496
			kfree(fr_desc->pi_ctx);
		}
497 498 499 500
		kfree(fr_desc);
		++i;
	}

501
	if (i < isert_conn->fr_pool_size)
502
		isert_warn("Pool still has %d regions registered\n",
503
			isert_conn->fr_pool_size - i);
504 505
}

506 507 508 509 510 511 512 513 514 515 516
static int
isert_create_pi_ctx(struct fast_reg_descriptor *desc,
		    struct ib_device *device,
		    struct ib_pd *pd)
{
	struct ib_mr_init_attr mr_init_attr;
	struct pi_context *pi_ctx;
	int ret;

	pi_ctx = kzalloc(sizeof(*desc->pi_ctx), GFP_KERNEL);
	if (!pi_ctx) {
517
		isert_err("Failed to allocate pi context\n");
518 519 520 521 522 523
		return -ENOMEM;
	}

	pi_ctx->prot_frpl = ib_alloc_fast_reg_page_list(device,
					    ISCSI_ISER_SG_TABLESIZE);
	if (IS_ERR(pi_ctx->prot_frpl)) {
524
		isert_err("Failed to allocate prot frpl err=%ld\n",
525 526 527 528 529 530 531
			  PTR_ERR(pi_ctx->prot_frpl));
		ret = PTR_ERR(pi_ctx->prot_frpl);
		goto err_pi_ctx;
	}

	pi_ctx->prot_mr = ib_alloc_fast_reg_mr(pd, ISCSI_ISER_SG_TABLESIZE);
	if (IS_ERR(pi_ctx->prot_mr)) {
532
		isert_err("Failed to allocate prot frmr err=%ld\n",
533 534 535 536 537 538 539 540 541 542 543
			  PTR_ERR(pi_ctx->prot_mr));
		ret = PTR_ERR(pi_ctx->prot_mr);
		goto err_prot_frpl;
	}
	desc->ind |= ISERT_PROT_KEY_VALID;

	memset(&mr_init_attr, 0, sizeof(mr_init_attr));
	mr_init_attr.max_reg_descriptors = 2;
	mr_init_attr.flags |= IB_MR_SIGNATURE_EN;
	pi_ctx->sig_mr = ib_create_mr(pd, &mr_init_attr);
	if (IS_ERR(pi_ctx->sig_mr)) {
544
		isert_err("Failed to allocate signature enabled mr err=%ld\n",
545 546 547 548 549 550 551 552 553 554 555 556
			  PTR_ERR(pi_ctx->sig_mr));
		ret = PTR_ERR(pi_ctx->sig_mr);
		goto err_prot_mr;
	}

	desc->pi_ctx = pi_ctx;
	desc->ind |= ISERT_SIG_KEY_VALID;
	desc->ind &= ~ISERT_PROTECTED;

	return 0;

err_prot_mr:
557
	ib_dereg_mr(pi_ctx->prot_mr);
558
err_prot_frpl:
559
	ib_free_fast_reg_page_list(pi_ctx->prot_frpl);
560
err_pi_ctx:
561
	kfree(pi_ctx);
562 563 564 565

	return ret;
}

566 567
static int
isert_create_fr_desc(struct ib_device *ib_device, struct ib_pd *pd,
568
		     struct fast_reg_descriptor *fr_desc)
569
{
570 571
	int ret;

572 573 574
	fr_desc->data_frpl = ib_alloc_fast_reg_page_list(ib_device,
							 ISCSI_ISER_SG_TABLESIZE);
	if (IS_ERR(fr_desc->data_frpl)) {
575
		isert_err("Failed to allocate data frpl err=%ld\n",
576
			  PTR_ERR(fr_desc->data_frpl));
577 578 579 580 581
		return PTR_ERR(fr_desc->data_frpl);
	}

	fr_desc->data_mr = ib_alloc_fast_reg_mr(pd, ISCSI_ISER_SG_TABLESIZE);
	if (IS_ERR(fr_desc->data_mr)) {
582
		isert_err("Failed to allocate data frmr err=%ld\n",
583
			  PTR_ERR(fr_desc->data_mr));
584 585
		ret = PTR_ERR(fr_desc->data_mr);
		goto err_data_frpl;
586
	}
587 588
	fr_desc->ind |= ISERT_DATA_KEY_VALID;

589
	isert_dbg("Created fr_desc %p\n", fr_desc);
590 591

	return 0;
592

593 594 595 596
err_data_frpl:
	ib_free_fast_reg_page_list(fr_desc->data_frpl);

	return ret;
597 598 599
}

static int
600
isert_conn_create_fastreg_pool(struct isert_conn *isert_conn)
601 602
{
	struct fast_reg_descriptor *fr_desc;
603
	struct isert_device *device = isert_conn->device;
604 605 606 607 608 609 610 611 612
	struct se_session *se_sess = isert_conn->conn->sess->se_sess;
	struct se_node_acl *se_nacl = se_sess->se_node_acl;
	int i, ret, tag_num;
	/*
	 * Setup the number of FRMRs based upon the number of tags
	 * available to session in iscsi_target_locate_portal().
	 */
	tag_num = max_t(u32, ISCSIT_MIN_TAGS, se_nacl->queue_depth);
	tag_num = (tag_num * 2) + ISCSIT_EXTRA_TAGS;
613

614
	isert_conn->fr_pool_size = 0;
615
	for (i = 0; i < tag_num; i++) {
616 617
		fr_desc = kzalloc(sizeof(*fr_desc), GFP_KERNEL);
		if (!fr_desc) {
618
			isert_err("Failed to allocate fast_reg descriptor\n");
619 620 621 622
			ret = -ENOMEM;
			goto err;
		}

623
		ret = isert_create_fr_desc(device->ib_device,
624
					   device->pd, fr_desc);
625
		if (ret) {
626
			isert_err("Failed to create fastreg descriptor err=%d\n",
627
			       ret);
628
			kfree(fr_desc);
629 630 631
			goto err;
		}

632 633
		list_add_tail(&fr_desc->list, &isert_conn->fr_pool);
		isert_conn->fr_pool_size++;
634 635
	}

636
	isert_dbg("Creating conn %p fastreg pool size=%d",
637
		 isert_conn, isert_conn->fr_pool_size);
638 639 640 641

	return 0;

err:
642
	isert_conn_free_fastreg_pool(isert_conn);
643 644 645
	return ret;
}

646 647
static void
isert_init_conn(struct isert_conn *isert_conn)
648 649
{
	isert_conn->state = ISER_CONN_INIT;
650 651
	INIT_LIST_HEAD(&isert_conn->accept_node);
	init_completion(&isert_conn->login_comp);
652
	init_completion(&isert_conn->login_req_comp);
653 654 655 656 657
	init_completion(&isert_conn->wait);
	kref_init(&isert_conn->kref);
	mutex_init(&isert_conn->mutex);
	spin_lock_init(&isert_conn->pool_lock);
	INIT_LIST_HEAD(&isert_conn->fr_pool);
658
	INIT_WORK(&isert_conn->release_work, isert_release_work);
659
}
660

661 662 663
static void
isert_free_login_buf(struct isert_conn *isert_conn)
{
664
	struct ib_device *ib_dev = isert_conn->device->ib_device;
665 666 667 668 669 670 671 672 673 674 675 676 677 678

	ib_dma_unmap_single(ib_dev, isert_conn->login_rsp_dma,
			    ISER_RX_LOGIN_SIZE, DMA_TO_DEVICE);
	ib_dma_unmap_single(ib_dev, isert_conn->login_req_dma,
			    ISCSI_DEF_MAX_RECV_SEG_LEN,
			    DMA_FROM_DEVICE);
	kfree(isert_conn->login_buf);
}

static int
isert_alloc_login_buf(struct isert_conn *isert_conn,
		      struct ib_device *ib_dev)
{
	int ret;
679 680 681 682

	isert_conn->login_buf = kzalloc(ISCSI_DEF_MAX_RECV_SEG_LEN +
					ISER_RX_LOGIN_SIZE, GFP_KERNEL);
	if (!isert_conn->login_buf) {
683
		isert_err("Unable to allocate isert_conn->login_buf\n");
684
		return -ENOMEM;
685 686 687 688 689
	}

	isert_conn->login_req_buf = isert_conn->login_buf;
	isert_conn->login_rsp_buf = isert_conn->login_buf +
				    ISCSI_DEF_MAX_RECV_SEG_LEN;
690

691
	isert_dbg("Set login_buf: %p login_req_buf: %p login_rsp_buf: %p\n",
692 693 694 695 696 697 698 699 700
		 isert_conn->login_buf, isert_conn->login_req_buf,
		 isert_conn->login_rsp_buf);

	isert_conn->login_req_dma = ib_dma_map_single(ib_dev,
				(void *)isert_conn->login_req_buf,
				ISCSI_DEF_MAX_RECV_SEG_LEN, DMA_FROM_DEVICE);

	ret = ib_dma_mapping_error(ib_dev, isert_conn->login_req_dma);
	if (ret) {
701
		isert_err("login_req_dma mapping error: %d\n", ret);
702 703 704 705 706 707 708 709 710 711
		isert_conn->login_req_dma = 0;
		goto out_login_buf;
	}

	isert_conn->login_rsp_dma = ib_dma_map_single(ib_dev,
					(void *)isert_conn->login_rsp_buf,
					ISER_RX_LOGIN_SIZE, DMA_TO_DEVICE);

	ret = ib_dma_mapping_error(ib_dev, isert_conn->login_rsp_dma);
	if (ret) {
712
		isert_err("login_rsp_dma mapping error: %d\n", ret);
713 714 715 716
		isert_conn->login_rsp_dma = 0;
		goto out_req_dma_map;
	}

717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751
	return 0;

out_req_dma_map:
	ib_dma_unmap_single(ib_dev, isert_conn->login_req_dma,
			    ISCSI_DEF_MAX_RECV_SEG_LEN, DMA_FROM_DEVICE);
out_login_buf:
	kfree(isert_conn->login_buf);
	return ret;
}

static int
isert_connect_request(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
{
	struct isert_np *isert_np = cma_id->context;
	struct iscsi_np *np = isert_np->np;
	struct isert_conn *isert_conn;
	struct isert_device *device;
	int ret = 0;

	spin_lock_bh(&np->np_thread_lock);
	if (!np->enabled) {
		spin_unlock_bh(&np->np_thread_lock);
		isert_dbg("iscsi_np is not enabled, reject connect request\n");
		return rdma_reject(cma_id, NULL, 0);
	}
	spin_unlock_bh(&np->np_thread_lock);

	isert_dbg("cma_id: %p, portal: %p\n",
		 cma_id, cma_id->context);

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

	isert_init_conn(isert_conn);
752
	isert_conn->cm_id = cma_id;
753 754 755 756 757

	ret = isert_alloc_login_buf(isert_conn, cma_id->device);
	if (ret)
		goto out;

758
	device = isert_device_get(cma_id);
759 760 761 762
	if (IS_ERR(device)) {
		ret = PTR_ERR(device);
		goto out_rsp_dma_map;
	}
763
	isert_conn->device = device;
764

765 766 767 768
	/* Set max inflight RDMA READ requests */
	isert_conn->initiator_depth = min_t(u8,
				event->param.conn.initiator_depth,
				device->dev_attr.max_qp_init_rd_atom);
769
	isert_dbg("Using initiator_depth: %u\n", isert_conn->initiator_depth);
770

771
	ret = isert_conn_setup_qp(isert_conn, cma_id);
772 773 774
	if (ret)
		goto out_conn_dev;

775 776 777
	ret = isert_rdma_post_recvl(isert_conn);
	if (ret)
		goto out_conn_dev;
778 779 780 781 782 783 784 785 786 787 788
	/*
	 * Obtain the second reference now before isert_rdma_accept() to
	 * ensure that any initiator generated REJECT CM event that occurs
	 * asynchronously won't drop the last reference until the error path
	 * in iscsi_target_login_sess_out() does it's ->iscsit_free_conn() ->
	 * isert_free_conn() -> isert_put_conn() -> kref_put().
	 */
	if (!kref_get_unless_zero(&isert_conn->kref)) {
		isert_warn("conn %p connect_release is running\n", isert_conn);
		goto out_conn_dev;
	}
789 790 791 792 793

	ret = isert_rdma_accept(isert_conn);
	if (ret)
		goto out_conn_dev;

794
	mutex_lock(&isert_np->np_accept_mutex);
795
	list_add_tail(&isert_conn->accept_node, &isert_np->np_accept_list);
796 797
	mutex_unlock(&isert_np->np_accept_mutex);

798
	isert_info("np %p: Allow accept_np to continue\n", np);
799
	up(&isert_np->np_sem);
800 801 802
	return 0;

out_conn_dev:
803
	isert_device_put(device);
804
out_rsp_dma_map:
805
	isert_free_login_buf(isert_conn);
806 807
out:
	kfree(isert_conn);
808
	rdma_reject(cma_id, NULL, 0);
809 810 811 812 813 814
	return ret;
}

static void
isert_connect_release(struct isert_conn *isert_conn)
{
815
	struct isert_device *device = isert_conn->device;
816

817
	isert_dbg("conn %p\n", isert_conn);
818

819 820 821
	BUG_ON(!device);

	if (device->use_fastreg)
822
		isert_conn_free_fastreg_pool(isert_conn);
823

824
	isert_free_rx_descriptors(isert_conn);
825 826
	if (isert_conn->cm_id)
		rdma_destroy_id(isert_conn->cm_id);
827

828 829
	if (isert_conn->qp) {
		struct isert_comp *comp = isert_conn->qp->recv_cq->cq_context;
830

831
		isert_comp_put(comp);
832
		ib_destroy_qp(isert_conn->qp);
833 834
	}

835 836 837
	if (isert_conn->login_buf)
		isert_free_login_buf(isert_conn);

838
	isert_device_put(device);
839

840
	kfree(isert_conn);
841 842 843 844 845
}

static void
isert_connected_handler(struct rdma_cm_id *cma_id)
{
846
	struct isert_conn *isert_conn = cma_id->qp->qp_context;
847

848
	isert_info("conn %p\n", isert_conn);
849

850
	mutex_lock(&isert_conn->mutex);
851 852
	if (isert_conn->state != ISER_CONN_FULL_FEATURE)
		isert_conn->state = ISER_CONN_UP;
853
	mutex_unlock(&isert_conn->mutex);
854 855 856
}

static void
857
isert_release_kref(struct kref *kref)
858 859
{
	struct isert_conn *isert_conn = container_of(kref,
860
				struct isert_conn, kref);
861

862 863
	isert_info("conn %p final kref %s/%d\n", isert_conn, current->comm,
		   current->pid);
864 865 866 867 868 869 870

	isert_connect_release(isert_conn);
}

static void
isert_put_conn(struct isert_conn *isert_conn)
{
871
	kref_put(&isert_conn->kref, isert_release_kref);
872 873
}

874 875 876 877 878
/**
 * isert_conn_terminate() - Initiate connection termination
 * @isert_conn: isert connection struct
 *
 * Notes:
879
 * In case the connection state is FULL_FEATURE, move state
880
 * to TEMINATING and start teardown sequence (rdma_disconnect).
881
 * In case the connection state is UP, complete flush as well.
882
 *
883
 * This routine must be called with mutex held. Thus it is
884 885 886 887 888 889 890
 * safe to call multiple times.
 */
static void
isert_conn_terminate(struct isert_conn *isert_conn)
{
	int err;

891 892 893 894 895
	switch (isert_conn->state) {
	case ISER_CONN_TERMINATING:
		break;
	case ISER_CONN_UP:
	case ISER_CONN_FULL_FEATURE: /* FALLTHRU */
896
		isert_info("Terminating conn %p state %d\n",
897
			   isert_conn, isert_conn->state);
898
		isert_conn->state = ISER_CONN_TERMINATING;
899
		err = rdma_disconnect(isert_conn->cm_id);
900
		if (err)
901
			isert_warn("Failed rdma_disconnect isert_conn %p\n",
902
				   isert_conn);
903 904
		break;
	default:
905
		isert_warn("conn %p teminating in state %d\n",
906
			   isert_conn, isert_conn->state);
907 908 909
	}
}

910
static int
911 912
isert_np_cma_handler(struct isert_np *isert_np,
		     enum rdma_cm_event_type event)
913
{
914 915
	isert_dbg("%s (%d): isert np %p\n",
		  rdma_event_msg(event), event, isert_np);
916

917 918
	switch (event) {
	case RDMA_CM_EVENT_DEVICE_REMOVAL:
919
		isert_np->np_cm_id = NULL;
920 921 922 923
		break;
	case RDMA_CM_EVENT_ADDR_CHANGE:
		isert_np->np_cm_id = isert_setup_id(isert_np);
		if (IS_ERR(isert_np->np_cm_id)) {
924 925
			isert_err("isert np %p setup id failed: %ld\n",
				  isert_np, PTR_ERR(isert_np->np_cm_id));
926 927 928 929
			isert_np->np_cm_id = NULL;
		}
		break;
	default:
930
		isert_err("isert np %p Unexpected event %d\n",
931
			  isert_np, event);
932 933
	}

934 935 936 937 938 939 940 941 942
	return -1;
}

static int
isert_disconnected_handler(struct rdma_cm_id *cma_id,
			   enum rdma_cm_event_type event)
{
	struct isert_np *isert_np = cma_id->context;
	struct isert_conn *isert_conn;
943
	bool terminating = false;
944 945 946 947

	if (isert_np->np_cm_id == cma_id)
		return isert_np_cma_handler(cma_id->context, event);

948
	isert_conn = cma_id->qp->qp_context;
949

950
	mutex_lock(&isert_conn->mutex);
951
	terminating = (isert_conn->state == ISER_CONN_TERMINATING);
952
	isert_conn_terminate(isert_conn);
953
	mutex_unlock(&isert_conn->mutex);
954

955 956
	isert_info("conn %p completing wait\n", isert_conn);
	complete(&isert_conn->wait);
957

958 959 960 961 962 963 964 965 966 967 968 969
	if (terminating)
		goto out;

	mutex_lock(&isert_np->np_accept_mutex);
	if (!list_empty(&isert_conn->accept_node)) {
		list_del_init(&isert_conn->accept_node);
		isert_put_conn(isert_conn);
		queue_work(isert_release_wq, &isert_conn->release_work);
	}
	mutex_unlock(&isert_np->np_accept_mutex);

out:
970
	return 0;
971 972
}

973
static int
974 975
isert_connect_error(struct rdma_cm_id *cma_id)
{
976
	struct isert_conn *isert_conn = cma_id->qp->qp_context;
977

978
	isert_conn->cm_id = NULL;
979
	isert_put_conn(isert_conn);
980 981

	return -1;
982 983
}

984 985 986 987 988
static int
isert_cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
{
	int ret = 0;

989 990
	isert_info("%s (%d): status %d id %p np %p\n",
		   rdma_event_msg(event->event), event->event,
991
		   event->status, cma_id, cma_id->context);
992 993 994 995

	switch (event->event) {
	case RDMA_CM_EVENT_CONNECT_REQUEST:
		ret = isert_connect_request(cma_id, event);
996
		if (ret)
997
			isert_err("failed handle connect request %d\n", ret);
998 999 1000 1001
		break;
	case RDMA_CM_EVENT_ESTABLISHED:
		isert_connected_handler(cma_id);
		break;
1002 1003 1004 1005
	case RDMA_CM_EVENT_ADDR_CHANGE:    /* FALLTHRU */
	case RDMA_CM_EVENT_DISCONNECTED:   /* FALLTHRU */
	case RDMA_CM_EVENT_DEVICE_REMOVAL: /* FALLTHRU */
	case RDMA_CM_EVENT_TIMEWAIT_EXIT:  /* FALLTHRU */
1006
		ret = isert_disconnected_handler(cma_id, event->event);
1007
		break;
1008 1009
	case RDMA_CM_EVENT_REJECTED:       /* FALLTHRU */
	case RDMA_CM_EVENT_UNREACHABLE:    /* FALLTHRU */
1010
	case RDMA_CM_EVENT_CONNECT_ERROR:
1011
		ret = isert_connect_error(cma_id);
1012
		break;
1013
	default:
1014
		isert_err("Unhandled RDMA CMA event: %d\n", event->event);
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
		break;
	}

	return ret;
}

static int
isert_post_recv(struct isert_conn *isert_conn, u32 count)
{
	struct ib_recv_wr *rx_wr, *rx_wr_failed;
	int i, ret;
1026
	unsigned int rx_head = isert_conn->rx_desc_head;
1027 1028
	struct iser_rx_desc *rx_desc;

1029 1030
	for (rx_wr = isert_conn->rx_wr, i = 0; i < count; i++, rx_wr++) {
		rx_desc		= &isert_conn->rx_descs[rx_head];
1031
		rx_wr->wr_id	= (uintptr_t)rx_desc;
1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
		rx_wr->sg_list	= &rx_desc->rx_sg;
		rx_wr->num_sge	= 1;
		rx_wr->next	= rx_wr + 1;
		rx_head = (rx_head + 1) & (ISERT_QP_MAX_RECV_DTOS - 1);
	}

	rx_wr--;
	rx_wr->next = NULL; /* mark end of work requests list */

	isert_conn->post_recv_buf_count += count;
1042
	ret = ib_post_recv(isert_conn->qp, isert_conn->rx_wr,
1043 1044
				&rx_wr_failed);
	if (ret) {
1045
		isert_err("ib_post_recv() failed with ret: %d\n", ret);
1046 1047
		isert_conn->post_recv_buf_count -= count;
	} else {
1048
		isert_dbg("Posted %d RX buffers\n", count);
1049
		isert_conn->rx_desc_head = rx_head;
1050 1051 1052 1053 1054 1055 1056
	}
	return ret;
}

static int
isert_post_send(struct isert_conn *isert_conn, struct iser_tx_desc *tx_desc)
{
1057
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1058 1059 1060 1061 1062 1063 1064
	struct ib_send_wr send_wr, *send_wr_failed;
	int ret;

	ib_dma_sync_single_for_device(ib_dev, tx_desc->dma_addr,
				      ISER_HEADERS_LEN, DMA_TO_DEVICE);

	send_wr.next	= NULL;
1065
	send_wr.wr_id	= (uintptr_t)tx_desc;
1066 1067 1068 1069 1070
	send_wr.sg_list	= tx_desc->tx_sg;
	send_wr.num_sge	= tx_desc->num_sge;
	send_wr.opcode	= IB_WR_SEND;
	send_wr.send_flags = IB_SEND_SIGNALED;

1071
	ret = ib_post_send(isert_conn->qp, &send_wr, &send_wr_failed);
1072
	if (ret)
1073
		isert_err("ib_post_send() failed, ret: %d\n", ret);
1074 1075 1076 1077 1078 1079 1080 1081 1082

	return ret;
}

static void
isert_create_send_desc(struct isert_conn *isert_conn,
		       struct isert_cmd *isert_cmd,
		       struct iser_tx_desc *tx_desc)
{
1083
	struct isert_device *device = isert_conn->device;
1084
	struct ib_device *ib_dev = device->ib_device;
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094

	ib_dma_sync_single_for_cpu(ib_dev, tx_desc->dma_addr,
				   ISER_HEADERS_LEN, DMA_TO_DEVICE);

	memset(&tx_desc->iser_header, 0, sizeof(struct iser_hdr));
	tx_desc->iser_header.flags = ISER_VER;

	tx_desc->num_sge = 1;
	tx_desc->isert_cmd = isert_cmd;

1095 1096
	if (tx_desc->tx_sg[0].lkey != device->mr->lkey) {
		tx_desc->tx_sg[0].lkey = device->mr->lkey;
1097
		isert_dbg("tx_desc %p lkey mismatch, fixing\n", tx_desc);
1098 1099 1100 1101 1102 1103 1104
	}
}

static int
isert_init_tx_hdrs(struct isert_conn *isert_conn,
		   struct iser_tx_desc *tx_desc)
{
1105
	struct isert_device *device = isert_conn->device;
1106
	struct ib_device *ib_dev = device->ib_device;
1107 1108 1109 1110 1111
	u64 dma_addr;

	dma_addr = ib_dma_map_single(ib_dev, (void *)tx_desc,
			ISER_HEADERS_LEN, DMA_TO_DEVICE);
	if (ib_dma_mapping_error(ib_dev, dma_addr)) {
1112
		isert_err("ib_dma_mapping_error() failed\n");
1113 1114 1115 1116 1117 1118
		return -ENOMEM;
	}

	tx_desc->dma_addr = dma_addr;
	tx_desc->tx_sg[0].addr	= tx_desc->dma_addr;
	tx_desc->tx_sg[0].length = ISER_HEADERS_LEN;
1119
	tx_desc->tx_sg[0].lkey = device->mr->lkey;
1120

1121 1122 1123
	isert_dbg("Setup tx_sg[0].addr: 0x%llx length: %u lkey: 0x%x\n",
		  tx_desc->tx_sg[0].addr, tx_desc->tx_sg[0].length,
		  tx_desc->tx_sg[0].lkey);
1124 1125 1126 1127 1128

	return 0;
}

static void
1129
isert_init_send_wr(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
1130
		   struct ib_send_wr *send_wr)
1131
{
1132 1133
	struct iser_tx_desc *tx_desc = &isert_cmd->tx_desc;

1134
	isert_cmd->rdma_wr.iser_ib_op = ISER_IB_SEND;
1135
	send_wr->wr_id = (uintptr_t)&isert_cmd->tx_desc;
1136
	send_wr->opcode = IB_WR_SEND;
1137
	send_wr->sg_list = &tx_desc->tx_sg[0];
1138
	send_wr->num_sge = isert_cmd->tx_desc.num_sge;
1139
	send_wr->send_flags = IB_SEND_SIGNALED;
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
}

static int
isert_rdma_post_recvl(struct isert_conn *isert_conn)
{
	struct ib_recv_wr rx_wr, *rx_wr_fail;
	struct ib_sge sge;
	int ret;

	memset(&sge, 0, sizeof(struct ib_sge));
	sge.addr = isert_conn->login_req_dma;
	sge.length = ISER_RX_LOGIN_SIZE;
1152
	sge.lkey = isert_conn->device->mr->lkey;
1153

1154
	isert_dbg("Setup sge: addr: %llx length: %d 0x%08x\n",
1155 1156 1157
		sge.addr, sge.length, sge.lkey);

	memset(&rx_wr, 0, sizeof(struct ib_recv_wr));
1158
	rx_wr.wr_id = (uintptr_t)isert_conn->login_req_buf;
1159 1160 1161 1162
	rx_wr.sg_list = &sge;
	rx_wr.num_sge = 1;

	isert_conn->post_recv_buf_count++;
1163
	ret = ib_post_recv(isert_conn->qp, &rx_wr, &rx_wr_fail);
1164
	if (ret) {
1165
		isert_err("ib_post_recv() failed: %d\n", ret);
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
		isert_conn->post_recv_buf_count--;
	}

	return ret;
}

static int
isert_put_login_tx(struct iscsi_conn *conn, struct iscsi_login *login,
		   u32 length)
{
	struct isert_conn *isert_conn = conn->context;
1177
	struct isert_device *device = isert_conn->device;
1178
	struct ib_device *ib_dev = device->ib_device;
1179
	struct iser_tx_desc *tx_desc = &isert_conn->login_tx_desc;
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
	int ret;

	isert_create_send_desc(isert_conn, NULL, tx_desc);

	memcpy(&tx_desc->iscsi_header, &login->rsp[0],
	       sizeof(struct iscsi_hdr));

	isert_init_tx_hdrs(isert_conn, tx_desc);

	if (length > 0) {
		struct ib_sge *tx_dsg = &tx_desc->tx_sg[1];

		ib_dma_sync_single_for_cpu(ib_dev, isert_conn->login_rsp_dma,
					   length, DMA_TO_DEVICE);

		memcpy(isert_conn->login_rsp_buf, login->rsp_buf, length);

		ib_dma_sync_single_for_device(ib_dev, isert_conn->login_rsp_dma,
					      length, DMA_TO_DEVICE);

		tx_dsg->addr	= isert_conn->login_rsp_dma;
		tx_dsg->length	= length;
1202
		tx_dsg->lkey	= isert_conn->device->mr->lkey;
1203 1204 1205 1206
		tx_desc->num_sge = 2;
	}
	if (!login->login_failed) {
		if (login->login_complete) {
1207
			if (!conn->sess->sess_ops->SessionType &&
1208
			    isert_conn->device->use_fastreg) {
1209
				ret = isert_conn_create_fastreg_pool(isert_conn);
1210
				if (ret) {
1211
					isert_err("Conn: %p failed to create"
1212 1213 1214 1215 1216
					       " fastreg pool\n", isert_conn);
					return ret;
				}
			}

1217 1218 1219 1220 1221 1222 1223 1224
			ret = isert_alloc_rx_descriptors(isert_conn);
			if (ret)
				return ret;

			ret = isert_post_recv(isert_conn, ISERT_MIN_POSTED_RX);
			if (ret)
				return ret;

1225
			/* Now we are in FULL_FEATURE phase */
1226
			mutex_lock(&isert_conn->mutex);
1227
			isert_conn->state = ISER_CONN_FULL_FEATURE;
1228
			mutex_unlock(&isert_conn->mutex);
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
			goto post_send;
		}

		ret = isert_rdma_post_recvl(isert_conn);
		if (ret)
			return ret;
	}
post_send:
	ret = isert_post_send(isert_conn, tx_desc);
	if (ret)
		return ret;

	return 0;
}

static void
1245
isert_rx_login_req(struct isert_conn *isert_conn)
1246
{
1247 1248
	struct iser_rx_desc *rx_desc = (void *)isert_conn->login_req_buf;
	int rx_buflen = isert_conn->login_req_len;
1249 1250 1251 1252
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_login *login = conn->conn_login;
	int size;

1253
	isert_info("conn %p\n", isert_conn);
1254 1255

	WARN_ON_ONCE(!login);
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280

	if (login->first_request) {
		struct iscsi_login_req *login_req =
			(struct iscsi_login_req *)&rx_desc->iscsi_header;
		/*
		 * Setup the initial iscsi_login values from the leading
		 * login request PDU.
		 */
		login->leading_connection = (!login_req->tsih) ? 1 : 0;
		login->current_stage =
			(login_req->flags & ISCSI_FLAG_LOGIN_CURRENT_STAGE_MASK)
			 >> 2;
		login->version_min	= login_req->min_version;
		login->version_max	= login_req->max_version;
		memcpy(login->isid, login_req->isid, 6);
		login->cmd_sn		= be32_to_cpu(login_req->cmdsn);
		login->init_task_tag	= login_req->itt;
		login->initial_exp_statsn = be32_to_cpu(login_req->exp_statsn);
		login->cid		= be16_to_cpu(login_req->cid);
		login->tsih		= be16_to_cpu(login_req->tsih);
	}

	memcpy(&login->req[0], (void *)&rx_desc->iscsi_header, ISCSI_HDR_LEN);

	size = min(rx_buflen, MAX_KEY_VALUE_PAIRS);
1281 1282 1283
	isert_dbg("Using login payload size: %d, rx_buflen: %d "
		  "MAX_KEY_VALUE_PAIRS: %d\n", size, rx_buflen,
		  MAX_KEY_VALUE_PAIRS);
1284 1285
	memcpy(login->req_buf, &rx_desc->data[0], size);

1286
	if (login->first_request) {
1287
		complete(&isert_conn->login_comp);
1288 1289 1290
		return;
	}
	schedule_delayed_work(&conn->login_work, 0);
1291 1292 1293
}

static struct iscsi_cmd
1294
*isert_allocate_cmd(struct iscsi_conn *conn)
1295
{
1296
	struct isert_conn *isert_conn = conn->context;
1297
	struct isert_cmd *isert_cmd;
1298
	struct iscsi_cmd *cmd;
1299

1300
	cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
1301
	if (!cmd) {
1302
		isert_err("Unable to allocate iscsi_cmd + isert_cmd\n");
1303 1304
		return NULL;
	}
1305
	isert_cmd = iscsit_priv_cmd(cmd);
1306
	isert_cmd->conn = isert_conn;
1307
	isert_cmd->iscsi_cmd = cmd;
1308

1309
	return cmd;
1310 1311 1312 1313
}

static int
isert_handle_scsi_cmd(struct isert_conn *isert_conn,
1314 1315
		      struct isert_cmd *isert_cmd, struct iscsi_cmd *cmd,
		      struct iser_rx_desc *rx_desc, unsigned char *buf)
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
{
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_scsi_req *hdr = (struct iscsi_scsi_req *)buf;
	struct scatterlist *sg;
	int imm_data, imm_data_len, unsol_data, sg_nents, rc;
	bool dump_payload = false;

	rc = iscsit_setup_scsi_cmd(conn, cmd, buf);
	if (rc < 0)
		return rc;

	imm_data = cmd->immediate_data;
	imm_data_len = cmd->first_burst_len;
	unsol_data = cmd->unsolicited_data;

	rc = iscsit_process_scsi_cmd(conn, cmd, hdr);
	if (rc < 0) {
		return 0;
	} else if (rc > 0) {
		dump_payload = true;
		goto sequence_cmd;
	}

	if (!imm_data)
		return 0;

	sg = &cmd->se_cmd.t_data_sg[0];
	sg_nents = max(1UL, DIV_ROUND_UP(imm_data_len, PAGE_SIZE));

1345
	isert_dbg("Copying Immediate SG: %p sg_nents: %u from %p imm_data_len: %d\n",
1346
		  sg, sg_nents, &rx_desc->data[0], imm_data_len);
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359

	sg_copy_from_buffer(sg, sg_nents, &rx_desc->data[0], imm_data_len);

	cmd->write_data_done += imm_data_len;

	if (cmd->write_data_done == cmd->se_cmd.data_length) {
		spin_lock_bh(&cmd->istate_lock);
		cmd->cmd_flags |= ICF_GOT_LAST_DATAOUT;
		cmd->i_state = ISTATE_RECEIVED_LAST_DATAOUT;
		spin_unlock_bh(&cmd->istate_lock);
	}

sequence_cmd:
1360
	rc = iscsit_sequence_cmd(conn, cmd, buf, hdr->cmdsn);
1361 1362 1363

	if (!rc && dump_payload == false && unsol_data)
		iscsit_set_unsoliticed_dataout(cmd);
1364
	else if (dump_payload && imm_data)
1365
		target_put_sess_cmd(&cmd->se_cmd);
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389

	return 0;
}

static int
isert_handle_iscsi_dataout(struct isert_conn *isert_conn,
			   struct iser_rx_desc *rx_desc, unsigned char *buf)
{
	struct scatterlist *sg_start;
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_cmd *cmd = NULL;
	struct iscsi_data *hdr = (struct iscsi_data *)buf;
	u32 unsol_data_len = ntoh24(hdr->dlength);
	int rc, sg_nents, sg_off, page_off;

	rc = iscsit_check_dataout_hdr(conn, buf, &cmd);
	if (rc < 0)
		return rc;
	else if (!cmd)
		return 0;
	/*
	 * FIXME: Unexpected unsolicited_data out
	 */
	if (!cmd->unsolicited_data) {
1390
		isert_err("Received unexpected solicited data payload\n");
1391 1392 1393 1394
		dump_stack();
		return -1;
	}

1395 1396 1397 1398
	isert_dbg("Unsolicited DataOut unsol_data_len: %u, "
		  "write_data_done: %u, data_length: %u\n",
		  unsol_data_len,  cmd->write_data_done,
		  cmd->se_cmd.data_length);
1399 1400 1401 1402 1403 1404 1405 1406 1407

	sg_off = cmd->write_data_done / PAGE_SIZE;
	sg_start = &cmd->se_cmd.t_data_sg[sg_off];
	sg_nents = max(1UL, DIV_ROUND_UP(unsol_data_len, PAGE_SIZE));
	page_off = cmd->write_data_done % PAGE_SIZE;
	/*
	 * FIXME: Non page-aligned unsolicited_data out
	 */
	if (page_off) {
1408
		isert_err("unexpected non-page aligned data payload\n");
1409 1410 1411
		dump_stack();
		return -1;
	}
1412 1413 1414
	isert_dbg("Copying DataOut: sg_start: %p, sg_off: %u "
		  "sg_nents: %u from %p %u\n", sg_start, sg_off,
		  sg_nents, &rx_desc->data[0], unsol_data_len);
1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425

	sg_copy_from_buffer(sg_start, sg_nents, &rx_desc->data[0],
			    unsol_data_len);

	rc = iscsit_check_dataout_payload(cmd, hdr, false);
	if (rc < 0)
		return rc;

	return 0;
}

1426 1427
static int
isert_handle_nop_out(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
1428 1429
		     struct iscsi_cmd *cmd, struct iser_rx_desc *rx_desc,
		     unsigned char *buf)
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
{
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_nopout *hdr = (struct iscsi_nopout *)buf;
	int rc;

	rc = iscsit_setup_nop_out(conn, cmd, hdr);
	if (rc < 0)
		return rc;
	/*
	 * FIXME: Add support for NOPOUT payload using unsolicited RDMA payload
	 */

	return iscsit_process_nop_out(conn, cmd, hdr);
}

1445 1446
static int
isert_handle_text_cmd(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
1447 1448
		      struct iscsi_cmd *cmd, struct iser_rx_desc *rx_desc,
		      struct iscsi_text *hdr)
1449 1450 1451 1452
{
	struct iscsi_conn *conn = isert_conn->conn;
	u32 payload_length = ntoh24(hdr->dlength);
	int rc;
1453
	unsigned char *text_in = NULL;
1454 1455 1456 1457 1458

	rc = iscsit_setup_text_cmd(conn, cmd, hdr);
	if (rc < 0)
		return rc;

1459 1460 1461 1462 1463 1464 1465
	if (payload_length) {
		text_in = kzalloc(payload_length, GFP_KERNEL);
		if (!text_in) {
			isert_err("Unable to allocate text_in of payload_length: %u\n",
				  payload_length);
			return -ENOMEM;
		}
1466 1467 1468 1469 1470 1471 1472 1473
	}
	cmd->text_in_ptr = text_in;

	memcpy(cmd->text_in_ptr, &rx_desc->data[0], payload_length);

	return iscsit_process_text_cmd(conn, cmd, hdr);
}

1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
static int
isert_rx_opcode(struct isert_conn *isert_conn, struct iser_rx_desc *rx_desc,
		uint32_t read_stag, uint64_t read_va,
		uint32_t write_stag, uint64_t write_va)
{
	struct iscsi_hdr *hdr = &rx_desc->iscsi_header;
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_cmd *cmd;
	struct isert_cmd *isert_cmd;
	int ret = -EINVAL;
	u8 opcode = (hdr->opcode & ISCSI_OPCODE_MASK);

1486
	if (conn->sess->sess_ops->SessionType &&
1487
	   (!(opcode & ISCSI_OP_TEXT) || !(opcode & ISCSI_OP_LOGOUT))) {
1488
		isert_err("Got illegal opcode: 0x%02x in SessionType=Discovery,"
1489
			  " ignoring\n", opcode);
1490 1491 1492
		return 0;
	}

1493 1494
	switch (opcode) {
	case ISCSI_OP_SCSI_CMD:
1495
		cmd = isert_allocate_cmd(conn);
1496 1497 1498
		if (!cmd)
			break;

1499
		isert_cmd = iscsit_priv_cmd(cmd);
1500 1501 1502 1503 1504
		isert_cmd->read_stag = read_stag;
		isert_cmd->read_va = read_va;
		isert_cmd->write_stag = write_stag;
		isert_cmd->write_va = write_va;

1505
		ret = isert_handle_scsi_cmd(isert_conn, isert_cmd, cmd,
1506 1507 1508
					rx_desc, (unsigned char *)hdr);
		break;
	case ISCSI_OP_NOOP_OUT:
1509
		cmd = isert_allocate_cmd(conn);
1510 1511 1512
		if (!cmd)
			break;

1513 1514
		isert_cmd = iscsit_priv_cmd(cmd);
		ret = isert_handle_nop_out(isert_conn, isert_cmd, cmd,
1515
					   rx_desc, (unsigned char *)hdr);
1516 1517 1518 1519 1520 1521
		break;
	case ISCSI_OP_SCSI_DATA_OUT:
		ret = isert_handle_iscsi_dataout(isert_conn, rx_desc,
						(unsigned char *)hdr);
		break;
	case ISCSI_OP_SCSI_TMFUNC:
1522
		cmd = isert_allocate_cmd(conn);
1523 1524 1525 1526 1527 1528 1529
		if (!cmd)
			break;

		ret = iscsit_handle_task_mgt_cmd(conn, cmd,
						(unsigned char *)hdr);
		break;
	case ISCSI_OP_LOGOUT:
1530
		cmd = isert_allocate_cmd(conn);
1531 1532 1533 1534 1535
		if (!cmd)
			break;

		ret = iscsit_handle_logout_cmd(conn, cmd, (unsigned char *)hdr);
		break;
1536
	case ISCSI_OP_TEXT:
1537 1538 1539 1540 1541 1542 1543 1544 1545
		if (be32_to_cpu(hdr->ttt) != 0xFFFFFFFF) {
			cmd = iscsit_find_cmd_from_itt(conn, hdr->itt);
			if (!cmd)
				break;
		} else {
			cmd = isert_allocate_cmd(conn);
			if (!cmd)
				break;
		}
1546

1547 1548
		isert_cmd = iscsit_priv_cmd(cmd);
		ret = isert_handle_text_cmd(isert_conn, isert_cmd, cmd,
1549 1550
					    rx_desc, (struct iscsi_text *)hdr);
		break;
1551
	default:
1552
		isert_err("Got unknown iSCSI OpCode: 0x%02x\n", opcode);
1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
		dump_stack();
		break;
	}

	return ret;
}

static void
isert_rx_do_work(struct iser_rx_desc *rx_desc, struct isert_conn *isert_conn)
{
	struct iser_hdr *iser_hdr = &rx_desc->iser_header;
	uint64_t read_va = 0, write_va = 0;
	uint32_t read_stag = 0, write_stag = 0;
	int rc;

	switch (iser_hdr->flags & 0xF0) {
	case ISCSI_CTRL:
		if (iser_hdr->flags & ISER_RSV) {
			read_stag = be32_to_cpu(iser_hdr->read_stag);
			read_va = be64_to_cpu(iser_hdr->read_va);
1573 1574
			isert_dbg("ISER_RSV: read_stag: 0x%x read_va: 0x%llx\n",
				  read_stag, (unsigned long long)read_va);
1575 1576 1577 1578
		}
		if (iser_hdr->flags & ISER_WSV) {
			write_stag = be32_to_cpu(iser_hdr->write_stag);
			write_va = be64_to_cpu(iser_hdr->write_va);
1579 1580
			isert_dbg("ISER_WSV: write_stag: 0x%x write_va: 0x%llx\n",
				  write_stag, (unsigned long long)write_va);
1581 1582
		}

1583
		isert_dbg("ISER ISCSI_CTRL PDU\n");
1584 1585
		break;
	case ISER_HELLO:
1586
		isert_err("iSER Hello message\n");
1587 1588
		break;
	default:
1589
		isert_warn("Unknown iSER hdr flags: 0x%02x\n", iser_hdr->flags);
1590 1591 1592 1593 1594 1595 1596 1597
		break;
	}

	rc = isert_rx_opcode(isert_conn, rx_desc,
			     read_stag, read_va, write_stag, write_va);
}

static void
1598 1599 1600
isert_rcv_completion(struct iser_rx_desc *desc,
		     struct isert_conn *isert_conn,
		     u32 xfer_len)
1601
{
1602
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1603 1604 1605 1606 1607 1608 1609
	struct iscsi_hdr *hdr;
	u64 rx_dma;
	int rx_buflen, outstanding;

	if ((char *)desc == isert_conn->login_req_buf) {
		rx_dma = isert_conn->login_req_dma;
		rx_buflen = ISER_RX_LOGIN_SIZE;
1610
		isert_dbg("login_buf: Using rx_dma: 0x%llx, rx_buflen: %d\n",
1611 1612 1613 1614
			 rx_dma, rx_buflen);
	} else {
		rx_dma = desc->dma_addr;
		rx_buflen = ISER_RX_PAYLOAD_SIZE;
1615
		isert_dbg("req_buf: Using rx_dma: 0x%llx, rx_buflen: %d\n",
1616 1617 1618 1619 1620 1621
			 rx_dma, rx_buflen);
	}

	ib_dma_sync_single_for_cpu(ib_dev, rx_dma, rx_buflen, DMA_FROM_DEVICE);

	hdr = &desc->iscsi_header;
1622
	isert_dbg("iSCSI opcode: 0x%02x, ITT: 0x%08x, flags: 0x%02x dlen: %d\n",
1623 1624 1625
		 hdr->opcode, hdr->itt, hdr->flags,
		 (int)(xfer_len - ISER_HEADERS_LEN));

1626 1627 1628 1629 1630 1631 1632 1633
	if ((char *)desc == isert_conn->login_req_buf) {
		isert_conn->login_req_len = xfer_len - ISER_HEADERS_LEN;
		if (isert_conn->conn) {
			struct iscsi_login *login = isert_conn->conn->conn_login;

			if (login && !login->first_request)
				isert_rx_login_req(isert_conn);
		}
1634
		mutex_lock(&isert_conn->mutex);
1635
		complete(&isert_conn->login_req_comp);
1636
		mutex_unlock(&isert_conn->mutex);
1637
	} else {
1638
		isert_rx_do_work(desc, isert_conn);
1639
	}
1640 1641 1642 1643 1644

	ib_dma_sync_single_for_device(ib_dev, rx_dma, rx_buflen,
				      DMA_FROM_DEVICE);

	isert_conn->post_recv_buf_count--;
1645 1646
	isert_dbg("Decremented post_recv_buf_count: %d\n",
		  isert_conn->post_recv_buf_count);
1647 1648 1649 1650 1651 1652 1653 1654 1655 1656

	if ((char *)desc == isert_conn->login_req_buf)
		return;

	outstanding = isert_conn->post_recv_buf_count;
	if (outstanding + ISERT_MIN_POSTED_RX <= ISERT_QP_MAX_RECV_DTOS) {
		int err, count = min(ISERT_QP_MAX_RECV_DTOS - outstanding,
				ISERT_MIN_POSTED_RX);
		err = isert_post_recv(isert_conn, count);
		if (err) {
1657
			isert_err("isert_post_recv() count: %d failed, %d\n",
1658 1659 1660 1661 1662
			       count, err);
		}
	}
}

1663 1664 1665 1666 1667
static int
isert_map_data_buf(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
		   struct scatterlist *sg, u32 nents, u32 length, u32 offset,
		   enum iser_ib_op_code op, struct isert_data_buf *data)
{
1668
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685

	data->dma_dir = op == ISER_IB_RDMA_WRITE ?
			      DMA_TO_DEVICE : DMA_FROM_DEVICE;

	data->len = length - offset;
	data->offset = offset;
	data->sg_off = data->offset / PAGE_SIZE;

	data->sg = &sg[data->sg_off];
	data->nents = min_t(unsigned int, nents - data->sg_off,
					  ISCSI_ISER_SG_TABLESIZE);
	data->len = min_t(unsigned int, data->len, ISCSI_ISER_SG_TABLESIZE *
					PAGE_SIZE);

	data->dma_nents = ib_dma_map_sg(ib_dev, data->sg, data->nents,
					data->dma_dir);
	if (unlikely(!data->dma_nents)) {
1686
		isert_err("Cmd: unable to dma map SGs %p\n", sg);
1687 1688 1689
		return -EINVAL;
	}

1690
	isert_dbg("Mapped cmd: %p count: %u sg: %p sg_nents: %u rdma_len %d\n",
1691
		  isert_cmd, data->dma_nents, data->sg, data->nents, data->len);
1692 1693 1694 1695 1696 1697 1698

	return 0;
}

static void
isert_unmap_data_buf(struct isert_conn *isert_conn, struct isert_data_buf *data)
{
1699
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1700 1701 1702 1703 1704 1705 1706

	ib_dma_unmap_sg(ib_dev, data->sg, data->nents, data->dma_dir);
	memset(data, 0, sizeof(*data));
}



1707 1708 1709 1710 1711
static void
isert_unmap_cmd(struct isert_cmd *isert_cmd, struct isert_conn *isert_conn)
{
	struct isert_rdma_wr *wr = &isert_cmd->rdma_wr;

1712
	isert_dbg("Cmd %p\n", isert_cmd);
1713 1714

	if (wr->data.sg) {
1715
		isert_dbg("Cmd %p unmap_sg op\n", isert_cmd);
1716
		isert_unmap_data_buf(isert_conn, &wr->data);
1717 1718
	}

1719
	if (wr->send_wr) {
1720
		isert_dbg("Cmd %p free send_wr\n", isert_cmd);
1721 1722 1723
		kfree(wr->send_wr);
		wr->send_wr = NULL;
	}
1724

1725
	if (wr->ib_sge) {
1726
		isert_dbg("Cmd %p free ib_sge\n", isert_cmd);
1727 1728 1729
		kfree(wr->ib_sge);
		wr->ib_sge = NULL;
	}
1730 1731
}

1732
static void
1733
isert_unreg_rdma(struct isert_cmd *isert_cmd, struct isert_conn *isert_conn)
1734 1735 1736
{
	struct isert_rdma_wr *wr = &isert_cmd->rdma_wr;

1737
	isert_dbg("Cmd %p\n", isert_cmd);
1738 1739

	if (wr->fr_desc) {
1740
		isert_dbg("Cmd %p free fr_desc %p\n", isert_cmd, wr->fr_desc);
1741 1742 1743 1744
		if (wr->fr_desc->ind & ISERT_PROTECTED) {
			isert_unmap_data_buf(isert_conn, &wr->prot);
			wr->fr_desc->ind &= ~ISERT_PROTECTED;
		}
1745 1746 1747
		spin_lock_bh(&isert_conn->pool_lock);
		list_add_tail(&wr->fr_desc->list, &isert_conn->fr_pool);
		spin_unlock_bh(&isert_conn->pool_lock);
1748 1749 1750
		wr->fr_desc = NULL;
	}

1751
	if (wr->data.sg) {
1752
		isert_dbg("Cmd %p unmap_sg op\n", isert_cmd);
1753
		isert_unmap_data_buf(isert_conn, &wr->data);
1754 1755 1756 1757 1758 1759
	}

	wr->ib_sge = NULL;
	wr->send_wr = NULL;
}

1760
static void
1761
isert_put_cmd(struct isert_cmd *isert_cmd, bool comp_err)
1762
{
1763
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1764
	struct isert_conn *isert_conn = isert_cmd->conn;
1765
	struct iscsi_conn *conn = isert_conn->conn;
1766
	struct isert_device *device = isert_conn->device;
1767
	struct iscsi_text_rsp *hdr;
1768

1769
	isert_dbg("Cmd %p\n", isert_cmd);
1770 1771 1772 1773 1774

	switch (cmd->iscsi_opcode) {
	case ISCSI_OP_SCSI_CMD:
		spin_lock_bh(&conn->cmd_lock);
		if (!list_empty(&cmd->i_conn_node))
1775
			list_del_init(&cmd->i_conn_node);
1776 1777
		spin_unlock_bh(&conn->cmd_lock);

1778
		if (cmd->data_direction == DMA_TO_DEVICE) {
1779
			iscsit_stop_dataout_timer(cmd);
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
			/*
			 * Check for special case during comp_err where
			 * WRITE_PENDING has been handed off from core,
			 * but requires an extra target_put_sess_cmd()
			 * before transport_generic_free_cmd() below.
			 */
			if (comp_err &&
			    cmd->se_cmd.t_state == TRANSPORT_WRITE_PENDING) {
				struct se_cmd *se_cmd = &cmd->se_cmd;

1790
				target_put_sess_cmd(se_cmd);
1791 1792
			}
		}
1793

1794
		device->unreg_rdma_mem(isert_cmd, isert_conn);
1795 1796
		transport_generic_free_cmd(&cmd->se_cmd, 0);
		break;
1797
	case ISCSI_OP_SCSI_TMFUNC:
1798 1799
		spin_lock_bh(&conn->cmd_lock);
		if (!list_empty(&cmd->i_conn_node))
1800
			list_del_init(&cmd->i_conn_node);
1801 1802
		spin_unlock_bh(&conn->cmd_lock);

1803 1804 1805 1806
		transport_generic_free_cmd(&cmd->se_cmd, 0);
		break;
	case ISCSI_OP_REJECT:
	case ISCSI_OP_NOOP_OUT:
1807
	case ISCSI_OP_TEXT:
1808 1809 1810 1811 1812
		hdr = (struct iscsi_text_rsp *)&isert_cmd->tx_desc.iscsi_header;
		/* If the continue bit is on, keep the command alive */
		if (hdr->flags & ISCSI_FLAG_TEXT_CONTINUE)
			break;

1813 1814
		spin_lock_bh(&conn->cmd_lock);
		if (!list_empty(&cmd->i_conn_node))
1815
			list_del_init(&cmd->i_conn_node);
1816 1817 1818 1819 1820 1821 1822 1823
		spin_unlock_bh(&conn->cmd_lock);

		/*
		 * Handle special case for REJECT when iscsi_add_reject*() has
		 * overwritten the original iscsi_opcode assignment, and the
		 * associated cmd->se_cmd needs to be released.
		 */
		if (cmd->se_cmd.se_tfo != NULL) {
1824
			isert_dbg("Calling transport_generic_free_cmd for 0x%02x\n",
1825
				 cmd->iscsi_opcode);
1826 1827 1828 1829 1830 1831 1832
			transport_generic_free_cmd(&cmd->se_cmd, 0);
			break;
		}
		/*
		 * Fall-through
		 */
	default:
1833
		iscsit_release_cmd(cmd);
1834 1835 1836 1837 1838 1839 1840 1841
		break;
	}
}

static void
isert_unmap_tx_desc(struct iser_tx_desc *tx_desc, struct ib_device *ib_dev)
{
	if (tx_desc->dma_addr != 0) {
1842
		isert_dbg("unmap single for tx_desc->dma_addr\n");
1843 1844 1845 1846 1847 1848 1849 1850
		ib_dma_unmap_single(ib_dev, tx_desc->dma_addr,
				    ISER_HEADERS_LEN, DMA_TO_DEVICE);
		tx_desc->dma_addr = 0;
	}
}

static void
isert_completion_put(struct iser_tx_desc *tx_desc, struct isert_cmd *isert_cmd,
1851
		     struct ib_device *ib_dev, bool comp_err)
1852
{
1853
	if (isert_cmd->pdu_buf_dma != 0) {
1854
		isert_dbg("unmap single for isert_cmd->pdu_buf_dma\n");
1855 1856 1857
		ib_dma_unmap_single(ib_dev, isert_cmd->pdu_buf_dma,
				    isert_cmd->pdu_buf_len, DMA_TO_DEVICE);
		isert_cmd->pdu_buf_dma = 0;
1858 1859 1860
	}

	isert_unmap_tx_desc(tx_desc, ib_dev);
1861
	isert_put_cmd(isert_cmd, comp_err);
1862 1863
}

1864 1865 1866 1867 1868 1869 1870 1871
static int
isert_check_pi_status(struct se_cmd *se_cmd, struct ib_mr *sig_mr)
{
	struct ib_mr_status mr_status;
	int ret;

	ret = ib_check_mr_status(sig_mr, IB_MR_CHECK_SIG_STATUS, &mr_status);
	if (ret) {
1872
		isert_err("ib_check_mr_status failed, ret %d\n", ret);
1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894
		goto fail_mr_status;
	}

	if (mr_status.fail_status & IB_MR_CHECK_SIG_STATUS) {
		u64 sec_offset_err;
		u32 block_size = se_cmd->se_dev->dev_attrib.block_size + 8;

		switch (mr_status.sig_err.err_type) {
		case IB_SIG_BAD_GUARD:
			se_cmd->pi_err = TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED;
			break;
		case IB_SIG_BAD_REFTAG:
			se_cmd->pi_err = TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED;
			break;
		case IB_SIG_BAD_APPTAG:
			se_cmd->pi_err = TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED;
			break;
		}
		sec_offset_err = mr_status.sig_err.sig_err_offset;
		do_div(sec_offset_err, block_size);
		se_cmd->bad_sector = sec_offset_err + se_cmd->t_task_lba;

1895 1896 1897 1898 1899 1900
		isert_err("PI error found type %d at sector 0x%llx "
			  "expected 0x%x vs actual 0x%x\n",
			  mr_status.sig_err.err_type,
			  (unsigned long long)se_cmd->bad_sector,
			  mr_status.sig_err.expected,
			  mr_status.sig_err.actual);
1901 1902 1903 1904 1905 1906 1907
		ret = 1;
	}

fail_mr_status:
	return ret;
}

1908 1909 1910 1911
static void
isert_completion_rdma_write(struct iser_tx_desc *tx_desc,
			    struct isert_cmd *isert_cmd)
{
1912
	struct isert_rdma_wr *wr = &isert_cmd->rdma_wr;
1913
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1914
	struct se_cmd *se_cmd = &cmd->se_cmd;
1915
	struct isert_conn *isert_conn = isert_cmd->conn;
1916
	struct isert_device *device = isert_conn->device;
1917 1918 1919
	int ret = 0;

	if (wr->fr_desc && wr->fr_desc->ind & ISERT_PROTECTED) {
1920 1921 1922
		ret = isert_check_pi_status(se_cmd,
					    wr->fr_desc->pi_ctx->sig_mr);
		wr->fr_desc->ind &= ~ISERT_PROTECTED;
1923
	}
1924 1925

	device->unreg_rdma_mem(isert_cmd, isert_conn);
1926
	wr->send_wr_num = 0;
1927 1928 1929 1930 1931
	if (ret)
		transport_send_check_condition_and_sense(se_cmd,
							 se_cmd->pi_err, 0);
	else
		isert_put_response(isert_conn->conn, cmd);
1932 1933
}

1934 1935 1936 1937 1938
static void
isert_completion_rdma_read(struct iser_tx_desc *tx_desc,
			   struct isert_cmd *isert_cmd)
{
	struct isert_rdma_wr *wr = &isert_cmd->rdma_wr;
1939
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1940
	struct se_cmd *se_cmd = &cmd->se_cmd;
1941
	struct isert_conn *isert_conn = isert_cmd->conn;
1942
	struct isert_device *device = isert_conn->device;
1943
	int ret = 0;
1944

1945
	if (wr->fr_desc && wr->fr_desc->ind & ISERT_PROTECTED) {
1946 1947 1948
		ret = isert_check_pi_status(se_cmd,
					    wr->fr_desc->pi_ctx->sig_mr);
		wr->fr_desc->ind &= ~ISERT_PROTECTED;
1949 1950
	}

1951
	iscsit_stop_dataout_timer(cmd);
1952
	device->unreg_rdma_mem(isert_cmd, isert_conn);
1953
	cmd->write_data_done = wr->data.len;
1954
	wr->send_wr_num = 0;
1955

1956
	isert_dbg("Cmd: %p RDMA_READ comp calling execute_cmd\n", isert_cmd);
1957 1958 1959 1960 1961
	spin_lock_bh(&cmd->istate_lock);
	cmd->cmd_flags |= ICF_GOT_LAST_DATAOUT;
	cmd->i_state = ISTATE_RECEIVED_LAST_DATAOUT;
	spin_unlock_bh(&cmd->istate_lock);

1962
	if (ret) {
1963
		target_put_sess_cmd(se_cmd);
1964 1965
		transport_send_check_condition_and_sense(se_cmd,
							 se_cmd->pi_err, 0);
1966
	} else {
1967
		target_execute_cmd(se_cmd);
1968
	}
1969 1970 1971 1972 1973 1974 1975 1976
}

static void
isert_do_control_comp(struct work_struct *work)
{
	struct isert_cmd *isert_cmd = container_of(work,
			struct isert_cmd, comp_work);
	struct isert_conn *isert_conn = isert_cmd->conn;
1977
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1978
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1979

1980 1981
	isert_dbg("Cmd %p i_state %d\n", isert_cmd, cmd->i_state);

1982 1983 1984
	switch (cmd->i_state) {
	case ISTATE_SEND_TASKMGTRSP:
		iscsit_tmr_post_handler(cmd, cmd->conn);
1985 1986
	case ISTATE_SEND_REJECT:   /* FALLTHRU */
	case ISTATE_SEND_TEXTRSP:  /* FALLTHRU */
1987
		cmd->i_state = ISTATE_SENT_STATUS;
1988 1989
		isert_completion_put(&isert_cmd->tx_desc, isert_cmd,
				     ib_dev, false);
1990
		break;
1991 1992 1993 1994
	case ISTATE_SEND_LOGOUTRSP:
		iscsit_logout_post_handler(cmd, cmd->conn);
		break;
	default:
1995
		isert_err("Unknown i_state %d\n", cmd->i_state);
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006
		dump_stack();
		break;
	}
}

static void
isert_response_completion(struct iser_tx_desc *tx_desc,
			  struct isert_cmd *isert_cmd,
			  struct isert_conn *isert_conn,
			  struct ib_device *ib_dev)
{
2007
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
2008 2009

	if (cmd->i_state == ISTATE_SEND_TASKMGTRSP ||
2010
	    cmd->i_state == ISTATE_SEND_LOGOUTRSP ||
2011 2012
	    cmd->i_state == ISTATE_SEND_REJECT ||
	    cmd->i_state == ISTATE_SEND_TEXTRSP) {
2013 2014 2015 2016 2017 2018
		isert_unmap_tx_desc(tx_desc, ib_dev);

		INIT_WORK(&isert_cmd->comp_work, isert_do_control_comp);
		queue_work(isert_comp_wq, &isert_cmd->comp_work);
		return;
	}
2019

2020
	cmd->i_state = ISTATE_SENT_STATUS;
2021
	isert_completion_put(tx_desc, isert_cmd, ib_dev, false);
2022 2023 2024
}

static void
2025
isert_snd_completion(struct iser_tx_desc *tx_desc,
2026
		      struct isert_conn *isert_conn)
2027
{
2028
	struct ib_device *ib_dev = isert_conn->cm_id->device;
2029 2030 2031 2032 2033 2034 2035 2036 2037
	struct isert_cmd *isert_cmd = tx_desc->isert_cmd;
	struct isert_rdma_wr *wr;

	if (!isert_cmd) {
		isert_unmap_tx_desc(tx_desc, ib_dev);
		return;
	}
	wr = &isert_cmd->rdma_wr;

2038 2039
	isert_dbg("Cmd %p iser_ib_op %d\n", isert_cmd, wr->iser_ib_op);

2040 2041 2042 2043 2044 2045
	switch (wr->iser_ib_op) {
	case ISER_IB_SEND:
		isert_response_completion(tx_desc, isert_cmd,
					  isert_conn, ib_dev);
		break;
	case ISER_IB_RDMA_WRITE:
2046
		isert_completion_rdma_write(tx_desc, isert_cmd);
2047 2048 2049 2050 2051
		break;
	case ISER_IB_RDMA_READ:
		isert_completion_rdma_read(tx_desc, isert_cmd);
		break;
	default:
2052
		isert_err("Unknown wr->iser_ib_op: 0x%x\n", wr->iser_ib_op);
2053 2054 2055 2056 2057
		dump_stack();
		break;
	}
}

2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
/**
 * is_isert_tx_desc() - Indicate if the completion wr_id
 *     is a TX descriptor or not.
 * @isert_conn: iser connection
 * @wr_id: completion WR identifier
 *
 * Since we cannot rely on wc opcode in FLUSH errors
 * we must work around it by checking if the wr_id address
 * falls in the iser connection rx_descs buffer. If so
 * it is an RX descriptor, otherwize it is a TX.
 */
static inline bool
is_isert_tx_desc(struct isert_conn *isert_conn, void *wr_id)
{
2072 2073
	void *start = isert_conn->rx_descs;
	int len = ISERT_QP_MAX_RECV_DTOS * sizeof(*isert_conn->rx_descs);
2074 2075 2076 2077 2078 2079 2080

	if (wr_id >= start && wr_id < start + len)
		return false;

	return true;
}

2081
static void
2082
isert_cq_comp_err(struct isert_conn *isert_conn, struct ib_wc *wc)
2083
{
2084
	if (wc->wr_id == ISER_BEACON_WRID) {
2085
		isert_info("conn %p completing wait_comp_err\n",
2086
			   isert_conn);
2087
		complete(&isert_conn->wait_comp_err);
2088
	} else if (is_isert_tx_desc(isert_conn, (void *)(uintptr_t)wc->wr_id)) {
2089
		struct ib_device *ib_dev = isert_conn->cm_id->device;
2090
		struct isert_cmd *isert_cmd;
2091
		struct iser_tx_desc *desc;
2092

2093 2094
		desc = (struct iser_tx_desc *)(uintptr_t)wc->wr_id;
		isert_cmd = desc->isert_cmd;
2095 2096 2097 2098 2099 2100
		if (!isert_cmd)
			isert_unmap_tx_desc(desc, ib_dev);
		else
			isert_completion_put(desc, isert_cmd, ib_dev, true);
	} else {
		isert_conn->post_recv_buf_count--;
2101 2102
		if (!isert_conn->post_recv_buf_count)
			iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
2103
	}
2104 2105 2106
}

static void
2107
isert_handle_wc(struct ib_wc *wc)
2108 2109 2110
{
	struct isert_conn *isert_conn;
	struct iser_tx_desc *tx_desc;
2111
	struct iser_rx_desc *rx_desc;
2112

2113 2114 2115 2116
	isert_conn = wc->qp->qp_context;
	if (likely(wc->status == IB_WC_SUCCESS)) {
		if (wc->opcode == IB_WC_RECV) {
			rx_desc = (struct iser_rx_desc *)(uintptr_t)wc->wr_id;
2117
			isert_rcv_completion(rx_desc, isert_conn, wc->byte_len);
2118
		} else {
2119
			tx_desc = (struct iser_tx_desc *)(uintptr_t)wc->wr_id;
2120
			isert_snd_completion(tx_desc, isert_conn);
2121
		}
2122 2123
	} else {
		if (wc->status != IB_WC_WR_FLUSH_ERR)
2124 2125 2126
			isert_err("%s (%d): wr id %llx vend_err %x\n",
				  ib_wc_status_msg(wc->status), wc->status,
				  wc->wr_id, wc->vendor_err);
2127
		else
2128 2129 2130
			isert_dbg("%s (%d): wr id %llx\n",
				  ib_wc_status_msg(wc->status), wc->status,
				  wc->wr_id);
2131

2132 2133 2134
		if (wc->wr_id != ISER_FASTREG_LI_WRID)
			isert_cq_comp_err(isert_conn, wc);
	}
2135 2136 2137
}

static void
2138
isert_cq_work(struct work_struct *work)
2139
{
2140
	enum { isert_poll_budget = 65536 };
2141
	struct isert_comp *comp = container_of(work, struct isert_comp,
2142
					       work);
2143 2144
	struct ib_wc *const wcs = comp->wcs;
	int i, n, completed = 0;
2145

2146 2147 2148
	while ((n = ib_poll_cq(comp->cq, ARRAY_SIZE(comp->wcs), wcs)) > 0) {
		for (i = 0; i < n; i++)
			isert_handle_wc(&wcs[i]);
2149

2150 2151
		completed += n;
		if (completed >= isert_poll_budget)
2152 2153 2154
			break;
	}

2155
	ib_req_notify_cq(comp->cq, IB_CQ_NEXT_COMP);
2156 2157 2158
}

static void
2159
isert_cq_callback(struct ib_cq *cq, void *context)
2160
{
2161
	struct isert_comp *comp = context;
2162

2163
	queue_work(isert_comp_wq, &comp->work);
2164 2165 2166 2167 2168 2169 2170 2171
}

static int
isert_post_response(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd)
{
	struct ib_send_wr *wr_failed;
	int ret;

2172
	ret = ib_post_send(isert_conn->qp, &isert_cmd->tx_desc.send_wr,
2173 2174
			   &wr_failed);
	if (ret) {
2175
		isert_err("ib_post_send failed with %d\n", ret);
2176 2177 2178 2179 2180 2181 2182 2183
		return ret;
	}
	return ret;
}

static int
isert_put_response(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
{
2184
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2185
	struct isert_conn *isert_conn = conn->context;
2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;
	struct iscsi_scsi_rsp *hdr = (struct iscsi_scsi_rsp *)
				&isert_cmd->tx_desc.iscsi_header;

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
	iscsit_build_rsp_pdu(cmd, conn, true, hdr);
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
	/*
	 * Attach SENSE DATA payload to iSCSI Response PDU
	 */
	if (cmd->se_cmd.sense_buffer &&
	    ((cmd->se_cmd.se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
	    (cmd->se_cmd.se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
2199
		struct isert_device *device = isert_conn->device;
2200
		struct ib_device *ib_dev = device->ib_device;
2201
		struct ib_sge *tx_dsg = &isert_cmd->tx_desc.tx_sg[1];
2202
		u32 padding, pdu_len;
2203 2204 2205 2206 2207 2208 2209

		put_unaligned_be16(cmd->se_cmd.scsi_sense_length,
				   cmd->sense_buffer);
		cmd->se_cmd.scsi_sense_length += sizeof(__be16);

		padding = -(cmd->se_cmd.scsi_sense_length) & 3;
		hton24(hdr->dlength, (u32)cmd->se_cmd.scsi_sense_length);
2210
		pdu_len = cmd->se_cmd.scsi_sense_length + padding;
2211

2212 2213
		isert_cmd->pdu_buf_dma = ib_dma_map_single(ib_dev,
				(void *)cmd->sense_buffer, pdu_len,
2214 2215
				DMA_TO_DEVICE);

2216 2217 2218
		isert_cmd->pdu_buf_len = pdu_len;
		tx_dsg->addr	= isert_cmd->pdu_buf_dma;
		tx_dsg->length	= pdu_len;
2219
		tx_dsg->lkey	= device->mr->lkey;
2220 2221 2222
		isert_cmd->tx_desc.num_sge = 2;
	}

2223
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2224

2225
	isert_dbg("Posting SCSI Response\n");
2226 2227 2228 2229

	return isert_post_response(isert_conn, isert_cmd);
}

2230 2231 2232 2233
static void
isert_aborted_task(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
{
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2234
	struct isert_conn *isert_conn = conn->context;
2235
	struct isert_device *device = isert_conn->device;
2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247

	spin_lock_bh(&conn->cmd_lock);
	if (!list_empty(&cmd->i_conn_node))
		list_del_init(&cmd->i_conn_node);
	spin_unlock_bh(&conn->cmd_lock);

	if (cmd->data_direction == DMA_TO_DEVICE)
		iscsit_stop_dataout_timer(cmd);

	device->unreg_rdma_mem(isert_cmd, isert_conn);
}

2248 2249 2250
static enum target_prot_op
isert_get_sup_prot_ops(struct iscsi_conn *conn)
{
2251
	struct isert_conn *isert_conn = conn->context;
2252
	struct isert_device *device = isert_conn->device;
2253

2254 2255
	if (conn->tpg->tpg_attrib.t10_pi) {
		if (device->pi_capable) {
2256
			isert_info("conn %p PI offload enabled\n", isert_conn);
2257 2258 2259 2260 2261
			isert_conn->pi_support = true;
			return TARGET_PROT_ALL;
		}
	}

2262
	isert_info("conn %p PI offload disabled\n", isert_conn);
2263
	isert_conn->pi_support = false;
2264 2265 2266 2267

	return TARGET_PROT_NORMAL;
}

2268 2269 2270 2271
static int
isert_put_nopin(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
		bool nopout_response)
{
2272
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2273
	struct isert_conn *isert_conn = conn->context;
2274 2275 2276 2277 2278 2279 2280
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
	iscsit_build_nopin_rsp(cmd, conn, (struct iscsi_nopin *)
			       &isert_cmd->tx_desc.iscsi_header,
			       nopout_response);
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
2281
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2282

2283
	isert_dbg("conn %p Posting NOPIN Response\n", isert_conn);
2284 2285 2286 2287 2288 2289 2290

	return isert_post_response(isert_conn, isert_cmd);
}

static int
isert_put_logout_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2291
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2292
	struct isert_conn *isert_conn = conn->context;
2293 2294 2295 2296 2297 2298
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
	iscsit_build_logout_rsp(cmd, conn, (struct iscsi_logout_rsp *)
				&isert_cmd->tx_desc.iscsi_header);
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
2299
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2300

2301
	isert_dbg("conn %p Posting Logout Response\n", isert_conn);
2302 2303 2304 2305 2306 2307 2308

	return isert_post_response(isert_conn, isert_cmd);
}

static int
isert_put_tm_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2309
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2310
	struct isert_conn *isert_conn = conn->context;
2311 2312 2313 2314 2315 2316
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
	iscsit_build_task_mgt_rsp(cmd, conn, (struct iscsi_tm_rsp *)
				  &isert_cmd->tx_desc.iscsi_header);
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
2317
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2318

2319
	isert_dbg("conn %p Posting Task Management Response\n", isert_conn);
2320 2321 2322 2323 2324 2325 2326

	return isert_post_response(isert_conn, isert_cmd);
}

static int
isert_put_reject(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2327
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2328
	struct isert_conn *isert_conn = conn->context;
2329
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;
2330
	struct isert_device *device = isert_conn->device;
2331
	struct ib_device *ib_dev = device->ib_device;
2332 2333 2334
	struct ib_sge *tx_dsg = &isert_cmd->tx_desc.tx_sg[1];
	struct iscsi_reject *hdr =
		(struct iscsi_reject *)&isert_cmd->tx_desc.iscsi_header;
2335 2336

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
2337
	iscsit_build_reject(cmd, conn, hdr);
2338
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
2339 2340

	hton24(hdr->dlength, ISCSI_HDR_LEN);
2341
	isert_cmd->pdu_buf_dma = ib_dma_map_single(ib_dev,
2342 2343
			(void *)cmd->buf_ptr, ISCSI_HDR_LEN,
			DMA_TO_DEVICE);
2344 2345
	isert_cmd->pdu_buf_len = ISCSI_HDR_LEN;
	tx_dsg->addr	= isert_cmd->pdu_buf_dma;
2346
	tx_dsg->length	= ISCSI_HDR_LEN;
2347
	tx_dsg->lkey	= device->mr->lkey;
2348 2349
	isert_cmd->tx_desc.num_sge = 2;

2350
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2351

2352
	isert_dbg("conn %p Posting Reject\n", isert_conn);
2353 2354 2355 2356

	return isert_post_response(isert_conn, isert_cmd);
}

2357 2358 2359
static int
isert_put_text_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2360
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2361
	struct isert_conn *isert_conn = conn->context;
2362 2363 2364 2365 2366 2367 2368
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;
	struct iscsi_text_rsp *hdr =
		(struct iscsi_text_rsp *)&isert_cmd->tx_desc.iscsi_header;
	u32 txt_rsp_len;
	int rc;

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
2369
	rc = iscsit_build_text_rsp(cmd, conn, hdr, ISCSI_INFINIBAND);
2370 2371 2372 2373 2374 2375 2376
	if (rc < 0)
		return rc;

	txt_rsp_len = rc;
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);

	if (txt_rsp_len) {
2377
		struct isert_device *device = isert_conn->device;
2378
		struct ib_device *ib_dev = device->ib_device;
2379 2380 2381 2382 2383 2384 2385 2386 2387
		struct ib_sge *tx_dsg = &isert_cmd->tx_desc.tx_sg[1];
		void *txt_rsp_buf = cmd->buf_ptr;

		isert_cmd->pdu_buf_dma = ib_dma_map_single(ib_dev,
				txt_rsp_buf, txt_rsp_len, DMA_TO_DEVICE);

		isert_cmd->pdu_buf_len = txt_rsp_len;
		tx_dsg->addr	= isert_cmd->pdu_buf_dma;
		tx_dsg->length	= txt_rsp_len;
2388
		tx_dsg->lkey	= device->mr->lkey;
2389 2390
		isert_cmd->tx_desc.num_sge = 2;
	}
2391
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2392

2393
	isert_dbg("conn %p Text Response\n", isert_conn);
2394 2395 2396 2397

	return isert_post_response(isert_conn, isert_cmd);
}

2398 2399 2400 2401 2402
static int
isert_build_rdma_wr(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
		    struct ib_sge *ib_sge, struct ib_send_wr *send_wr,
		    u32 data_left, u32 offset)
{
2403
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
2404
	struct scatterlist *sg_start, *tmp_sg;
2405
	struct isert_device *device = isert_conn->device;
2406
	struct ib_device *ib_dev = device->ib_device;
2407 2408 2409 2410 2411 2412 2413 2414 2415
	u32 sg_off, page_off;
	int i = 0, sg_nents;

	sg_off = offset / PAGE_SIZE;
	sg_start = &cmd->se_cmd.t_data_sg[sg_off];
	sg_nents = min(cmd->se_cmd.t_data_nents - sg_off, isert_conn->max_sge);
	page_off = offset % PAGE_SIZE;

	send_wr->sg_list = ib_sge;
2416
	send_wr->wr_id = (uintptr_t)&isert_cmd->tx_desc;
2417 2418 2419 2420
	/*
	 * Perform mapping of TCM scatterlist memory ib_sge dma_addr.
	 */
	for_each_sg(sg_start, tmp_sg, sg_nents, i) {
2421 2422 2423 2424
		isert_dbg("RDMA from SGL dma_addr: 0x%llx dma_len: %u, "
			  "page_off: %u\n",
			  (unsigned long long)tmp_sg->dma_address,
			  tmp_sg->length, page_off);
2425 2426 2427 2428

		ib_sge->addr = ib_sg_dma_address(ib_dev, tmp_sg) + page_off;
		ib_sge->length = min_t(u32, data_left,
				ib_sg_dma_len(ib_dev, tmp_sg) - page_off);
2429
		ib_sge->lkey = device->mr->lkey;
2430

2431 2432
		isert_dbg("RDMA ib_sge: addr: 0x%llx  length: %u lkey: %x\n",
			  ib_sge->addr, ib_sge->length, ib_sge->lkey);
2433 2434
		page_off = 0;
		data_left -= ib_sge->length;
2435 2436
		if (!data_left)
			break;
2437
		ib_sge++;
2438
		isert_dbg("Incrementing ib_sge pointer to %p\n", ib_sge);
2439 2440
	}

2441
	send_wr->num_sge = ++i;
2442
	isert_dbg("Set outgoing sg_list: %p num_sg: %u from TCM SGLs\n",
2443
		  send_wr->sg_list, send_wr->num_sge);
2444

2445
	return send_wr->num_sge;
2446 2447 2448
}

static int
2449 2450
isert_map_rdma(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
	       struct isert_rdma_wr *wr)
2451 2452
{
	struct se_cmd *se_cmd = &cmd->se_cmd;
2453
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2454
	struct isert_conn *isert_conn = conn->context;
2455
	struct isert_data_buf *data = &wr->data;
2456
	struct ib_send_wr *send_wr;
2457
	struct ib_sge *ib_sge;
2458 2459
	u32 offset, data_len, data_left, rdma_write_max, va_offset = 0;
	int ret = 0, i, ib_sge_cnt;
2460

2461
	isert_cmd->tx_desc.isert_cmd = isert_cmd;
2462

2463 2464 2465 2466 2467 2468
	offset = wr->iser_ib_op == ISER_IB_RDMA_READ ? cmd->write_data_done : 0;
	ret = isert_map_data_buf(isert_conn, isert_cmd, se_cmd->t_data_sg,
				 se_cmd->t_data_nents, se_cmd->data_length,
				 offset, wr->iser_ib_op, &wr->data);
	if (ret)
		return ret;
2469

2470 2471
	data_left = data->len;
	offset = data->offset;
2472

2473
	ib_sge = kzalloc(sizeof(struct ib_sge) * data->nents, GFP_KERNEL);
2474
	if (!ib_sge) {
2475
		isert_warn("Unable to allocate ib_sge\n");
2476
		ret = -ENOMEM;
2477
		goto unmap_cmd;
2478
	}
2479
	wr->ib_sge = ib_sge;
2480

2481
	wr->send_wr_num = DIV_ROUND_UP(data->nents, isert_conn->max_sge);
2482 2483 2484
	wr->send_wr = kzalloc(sizeof(struct ib_send_wr) * wr->send_wr_num,
				GFP_KERNEL);
	if (!wr->send_wr) {
2485
		isert_dbg("Unable to allocate wr->send_wr\n");
2486
		ret = -ENOMEM;
2487
		goto unmap_cmd;
2488 2489 2490 2491 2492 2493 2494 2495 2496 2497
	}

	wr->isert_cmd = isert_cmd;
	rdma_write_max = isert_conn->max_sge * PAGE_SIZE;

	for (i = 0; i < wr->send_wr_num; i++) {
		send_wr = &isert_cmd->rdma_wr.send_wr[i];
		data_len = min(data_left, rdma_write_max);

		send_wr->send_flags = 0;
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
		if (wr->iser_ib_op == ISER_IB_RDMA_WRITE) {
			send_wr->opcode = IB_WR_RDMA_WRITE;
			send_wr->wr.rdma.remote_addr = isert_cmd->read_va + offset;
			send_wr->wr.rdma.rkey = isert_cmd->read_stag;
			if (i + 1 == wr->send_wr_num)
				send_wr->next = &isert_cmd->tx_desc.send_wr;
			else
				send_wr->next = &wr->send_wr[i + 1];
		} else {
			send_wr->opcode = IB_WR_RDMA_READ;
			send_wr->wr.rdma.remote_addr = isert_cmd->write_va + va_offset;
			send_wr->wr.rdma.rkey = isert_cmd->write_stag;
			if (i + 1 == wr->send_wr_num)
				send_wr->send_flags = IB_SEND_SIGNALED;
			else
				send_wr->next = &wr->send_wr[i + 1];
		}
2515 2516 2517 2518 2519 2520

		ib_sge_cnt = isert_build_rdma_wr(isert_conn, isert_cmd, ib_sge,
					send_wr, data_len, offset);
		ib_sge += ib_sge_cnt;

		offset += data_len;
2521
		va_offset += data_len;
2522 2523
		data_left -= data_len;
	}
2524 2525

	return 0;
2526 2527 2528
unmap_cmd:
	isert_unmap_data_buf(isert_conn, data);

2529 2530 2531
	return ret;
}

2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548
static int
isert_map_fr_pagelist(struct ib_device *ib_dev,
		      struct scatterlist *sg_start, int sg_nents, u64 *fr_pl)
{
	u64 start_addr, end_addr, page, chunk_start = 0;
	struct scatterlist *tmp_sg;
	int i = 0, new_chunk, last_ent, n_pages;

	n_pages = 0;
	new_chunk = 1;
	last_ent = sg_nents - 1;
	for_each_sg(sg_start, tmp_sg, sg_nents, i) {
		start_addr = ib_sg_dma_address(ib_dev, tmp_sg);
		if (new_chunk)
			chunk_start = start_addr;
		end_addr = start_addr + ib_sg_dma_len(ib_dev, tmp_sg);

2549 2550 2551
		isert_dbg("SGL[%d] dma_addr: 0x%llx len: %u\n",
			  i, (unsigned long long)tmp_sg->dma_address,
			  tmp_sg->length);
2552 2553 2554 2555 2556 2557 2558 2559 2560 2561

		if ((end_addr & ~PAGE_MASK) && i < last_ent) {
			new_chunk = 0;
			continue;
		}
		new_chunk = 1;

		page = chunk_start & PAGE_MASK;
		do {
			fr_pl[n_pages++] = page;
2562 2563
			isert_dbg("Mapped page_list[%d] page_addr: 0x%llx\n",
				  n_pages - 1, page);
2564 2565 2566 2567 2568 2569 2570
			page += PAGE_SIZE;
		} while (page < end_addr);
	}

	return n_pages;
}

2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585
static inline void
isert_inv_rkey(struct ib_send_wr *inv_wr, struct ib_mr *mr)
{
	u32 rkey;

	memset(inv_wr, 0, sizeof(*inv_wr));
	inv_wr->wr_id = ISER_FASTREG_LI_WRID;
	inv_wr->opcode = IB_WR_LOCAL_INV;
	inv_wr->ex.invalidate_rkey = mr->rkey;

	/* Bump the key */
	rkey = ib_inc_rkey(mr->rkey);
	ib_update_fast_reg_key(mr, rkey);
}

2586
static int
2587 2588 2589
isert_fast_reg_mr(struct isert_conn *isert_conn,
		  struct fast_reg_descriptor *fr_desc,
		  struct isert_data_buf *mem,
2590
		  enum isert_indicator ind,
2591
		  struct ib_sge *sge)
2592
{
2593
	struct isert_device *device = isert_conn->device;
2594
	struct ib_device *ib_dev = device->ib_device;
2595 2596
	struct ib_mr *mr;
	struct ib_fast_reg_page_list *frpl;
2597 2598
	struct ib_send_wr fr_wr, inv_wr;
	struct ib_send_wr *bad_wr, *wr = NULL;
2599 2600
	int ret, pagelist_len;
	u32 page_off;
2601

2602
	if (mem->dma_nents == 1) {
2603
		sge->lkey = device->mr->lkey;
2604 2605
		sge->addr = ib_sg_dma_address(ib_dev, &mem->sg[0]);
		sge->length = ib_sg_dma_len(ib_dev, &mem->sg[0]);
2606 2607
		isert_dbg("sge: addr: 0x%llx  length: %u lkey: %x\n",
			 sge->addr, sge->length, sge->lkey);
2608 2609 2610
		return 0;
	}

2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
	if (ind == ISERT_DATA_KEY_VALID) {
		/* Registering data buffer */
		mr = fr_desc->data_mr;
		frpl = fr_desc->data_frpl;
	} else {
		/* Registering protection buffer */
		mr = fr_desc->pi_ctx->prot_mr;
		frpl = fr_desc->pi_ctx->prot_frpl;
	}

2621
	page_off = mem->offset % PAGE_SIZE;
2622

2623
	isert_dbg("Use fr_desc %p sg_nents %d offset %u\n",
2624
		  fr_desc, mem->nents, mem->offset);
2625

2626
	pagelist_len = isert_map_fr_pagelist(ib_dev, mem->sg, mem->nents,
2627
					     &frpl->page_list[0]);
2628

2629 2630
	if (!(fr_desc->ind & ind)) {
		isert_inv_rkey(&inv_wr, mr);
2631 2632 2633 2634 2635
		wr = &inv_wr;
	}

	/* Prepare FASTREG WR */
	memset(&fr_wr, 0, sizeof(fr_wr));
2636
	fr_wr.wr_id = ISER_FASTREG_LI_WRID;
2637
	fr_wr.opcode = IB_WR_FAST_REG_MR;
2638 2639
	fr_wr.wr.fast_reg.iova_start = frpl->page_list[0] + page_off;
	fr_wr.wr.fast_reg.page_list = frpl;
2640 2641
	fr_wr.wr.fast_reg.page_list_len = pagelist_len;
	fr_wr.wr.fast_reg.page_shift = PAGE_SHIFT;
2642
	fr_wr.wr.fast_reg.length = mem->len;
2643
	fr_wr.wr.fast_reg.rkey = mr->rkey;
2644 2645 2646 2647 2648 2649 2650
	fr_wr.wr.fast_reg.access_flags = IB_ACCESS_LOCAL_WRITE;

	if (!wr)
		wr = &fr_wr;
	else
		wr->next = &fr_wr;

2651
	ret = ib_post_send(isert_conn->qp, wr, &bad_wr);
2652
	if (ret) {
2653
		isert_err("fast registration failed, ret:%d\n", ret);
2654 2655
		return ret;
	}
2656
	fr_desc->ind &= ~ind;
2657

2658 2659
	sge->lkey = mr->lkey;
	sge->addr = frpl->page_list[0] + page_off;
2660
	sge->length = mem->len;
2661

2662 2663
	isert_dbg("sge: addr: 0x%llx  length: %u lkey: %x\n",
		  sge->addr, sge->length, sge->lkey);
2664 2665 2666 2667

	return ret;
}

2668 2669 2670 2671
static inline void
isert_set_dif_domain(struct se_cmd *se_cmd, struct ib_sig_attrs *sig_attrs,
		     struct ib_sig_domain *domain)
{
2672
	domain->sig_type = IB_SIG_TYPE_T10_DIF;
2673 2674 2675
	domain->sig.dif.bg_type = IB_T10DIF_CRC;
	domain->sig.dif.pi_interval = se_cmd->se_dev->dev_attrib.block_size;
	domain->sig.dif.ref_tag = se_cmd->reftag_seed;
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
	/*
	 * At the moment we hard code those, but if in the future
	 * the target core would like to use it, we will take it
	 * from se_cmd.
	 */
	domain->sig.dif.apptag_check_mask = 0xffff;
	domain->sig.dif.app_escape = true;
	domain->sig.dif.ref_escape = true;
	if (se_cmd->prot_type == TARGET_DIF_TYPE1_PROT ||
	    se_cmd->prot_type == TARGET_DIF_TYPE2_PROT)
		domain->sig.dif.ref_remap = true;
2687 2688
};

2689 2690 2691 2692 2693 2694
static int
isert_set_sig_attrs(struct se_cmd *se_cmd, struct ib_sig_attrs *sig_attrs)
{
	switch (se_cmd->prot_op) {
	case TARGET_PROT_DIN_INSERT:
	case TARGET_PROT_DOUT_STRIP:
2695
		sig_attrs->mem.sig_type = IB_SIG_TYPE_NONE;
2696
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->wire);
2697 2698 2699
		break;
	case TARGET_PROT_DOUT_INSERT:
	case TARGET_PROT_DIN_STRIP:
2700
		sig_attrs->wire.sig_type = IB_SIG_TYPE_NONE;
2701
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->mem);
2702 2703 2704
		break;
	case TARGET_PROT_DIN_PASS:
	case TARGET_PROT_DOUT_PASS:
2705 2706
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->wire);
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->mem);
2707 2708
		break;
	default:
2709
		isert_err("Unsupported PI operation %d\n", se_cmd->prot_op);
2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724
		return -EINVAL;
	}

	return 0;
}

static inline u8
isert_set_prot_checks(u8 prot_checks)
{
	return (prot_checks & TARGET_DIF_CHECK_GUARD  ? 0xc0 : 0) |
	       (prot_checks & TARGET_DIF_CHECK_REFTAG ? 0x30 : 0) |
	       (prot_checks & TARGET_DIF_CHECK_REFTAG ? 0x0f : 0);
}

static int
2725 2726 2727 2728
isert_reg_sig_mr(struct isert_conn *isert_conn,
		 struct se_cmd *se_cmd,
		 struct isert_rdma_wr *rdma_wr,
		 struct fast_reg_descriptor *fr_desc)
2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739
{
	struct ib_send_wr sig_wr, inv_wr;
	struct ib_send_wr *bad_wr, *wr = NULL;
	struct pi_context *pi_ctx = fr_desc->pi_ctx;
	struct ib_sig_attrs sig_attrs;
	int ret;

	memset(&sig_attrs, 0, sizeof(sig_attrs));
	ret = isert_set_sig_attrs(se_cmd, &sig_attrs);
	if (ret)
		goto err;
2740

2741 2742 2743
	sig_attrs.check_mask = isert_set_prot_checks(se_cmd->prot_checks);

	if (!(fr_desc->ind & ISERT_SIG_KEY_VALID)) {
2744
		isert_inv_rkey(&inv_wr, pi_ctx->sig_mr);
2745 2746 2747 2748 2749
		wr = &inv_wr;
	}

	memset(&sig_wr, 0, sizeof(sig_wr));
	sig_wr.opcode = IB_WR_REG_SIG_MR;
2750
	sig_wr.wr_id = ISER_FASTREG_LI_WRID;
2751
	sig_wr.sg_list = &rdma_wr->ib_sg[DATA];
2752 2753 2754 2755 2756
	sig_wr.num_sge = 1;
	sig_wr.wr.sig_handover.access_flags = IB_ACCESS_LOCAL_WRITE;
	sig_wr.wr.sig_handover.sig_attrs = &sig_attrs;
	sig_wr.wr.sig_handover.sig_mr = pi_ctx->sig_mr;
	if (se_cmd->t_prot_sg)
2757
		sig_wr.wr.sig_handover.prot = &rdma_wr->ib_sg[PROT];
2758 2759 2760 2761 2762 2763

	if (!wr)
		wr = &sig_wr;
	else
		wr->next = &sig_wr;

2764
	ret = ib_post_send(isert_conn->qp, wr, &bad_wr);
2765
	if (ret) {
2766
		isert_err("fast registration failed, ret:%d\n", ret);
2767 2768 2769 2770
		goto err;
	}
	fr_desc->ind &= ~ISERT_SIG_KEY_VALID;

2771 2772 2773
	rdma_wr->ib_sg[SIG].lkey = pi_ctx->sig_mr->lkey;
	rdma_wr->ib_sg[SIG].addr = 0;
	rdma_wr->ib_sg[SIG].length = se_cmd->data_length;
2774 2775 2776 2777 2778 2779
	if (se_cmd->prot_op != TARGET_PROT_DIN_STRIP &&
	    se_cmd->prot_op != TARGET_PROT_DOUT_INSERT)
		/*
		 * We have protection guards on the wire
		 * so we need to set a larget transfer
		 */
2780
		rdma_wr->ib_sg[SIG].length += se_cmd->prot_length;
2781

2782
	isert_dbg("sig_sge: addr: 0x%llx  length: %u lkey: %x\n",
2783 2784
		  rdma_wr->ib_sg[SIG].addr, rdma_wr->ib_sg[SIG].length,
		  rdma_wr->ib_sg[SIG].lkey);
2785
err:
2786 2787 2788
	return ret;
}

2789 2790 2791 2792 2793
static int
isert_handle_prot_cmd(struct isert_conn *isert_conn,
		      struct isert_cmd *isert_cmd,
		      struct isert_rdma_wr *wr)
{
2794
	struct isert_device *device = isert_conn->device;
2795 2796 2797 2798 2799 2800
	struct se_cmd *se_cmd = &isert_cmd->iscsi_cmd->se_cmd;
	int ret;

	if (!wr->fr_desc->pi_ctx) {
		ret = isert_create_pi_ctx(wr->fr_desc,
					  device->ib_device,
2801
					  device->pd);
2802
		if (ret) {
2803
			isert_err("conn %p failed to allocate pi_ctx\n",
2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815
				  isert_conn);
			return ret;
		}
	}

	if (se_cmd->t_prot_sg) {
		ret = isert_map_data_buf(isert_conn, isert_cmd,
					 se_cmd->t_prot_sg,
					 se_cmd->t_prot_nents,
					 se_cmd->prot_length,
					 0, wr->iser_ib_op, &wr->prot);
		if (ret) {
2816
			isert_err("conn %p failed to map protection buffer\n",
2817 2818 2819 2820 2821 2822 2823 2824
				  isert_conn);
			return ret;
		}

		memset(&wr->ib_sg[PROT], 0, sizeof(wr->ib_sg[PROT]));
		ret = isert_fast_reg_mr(isert_conn, wr->fr_desc, &wr->prot,
					ISERT_PROT_KEY_VALID, &wr->ib_sg[PROT]);
		if (ret) {
2825
			isert_err("conn %p failed to fast reg mr\n",
2826 2827 2828 2829 2830 2831 2832
				  isert_conn);
			goto unmap_prot_cmd;
		}
	}

	ret = isert_reg_sig_mr(isert_conn, se_cmd, wr, wr->fr_desc);
	if (ret) {
2833
		isert_err("conn %p failed to fast reg mr\n",
2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847
			  isert_conn);
		goto unmap_prot_cmd;
	}
	wr->fr_desc->ind |= ISERT_PROTECTED;

	return 0;

unmap_prot_cmd:
	if (se_cmd->t_prot_sg)
		isert_unmap_data_buf(isert_conn, &wr->prot);

	return ret;
}

2848
static int
2849 2850
isert_reg_rdma(struct iscsi_conn *conn, struct iscsi_cmd *cmd,
	       struct isert_rdma_wr *wr)
2851 2852 2853
{
	struct se_cmd *se_cmd = &cmd->se_cmd;
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2854 2855
	struct isert_conn *isert_conn = conn->context;
	struct fast_reg_descriptor *fr_desc = NULL;
2856 2857
	struct ib_send_wr *send_wr;
	struct ib_sge *ib_sg;
2858 2859
	u32 offset;
	int ret = 0;
2860 2861
	unsigned long flags;

2862
	isert_cmd->tx_desc.isert_cmd = isert_cmd;
2863

2864 2865 2866 2867 2868 2869
	offset = wr->iser_ib_op == ISER_IB_RDMA_READ ? cmd->write_data_done : 0;
	ret = isert_map_data_buf(isert_conn, isert_cmd, se_cmd->t_data_sg,
				 se_cmd->t_data_nents, se_cmd->data_length,
				 offset, wr->iser_ib_op, &wr->data);
	if (ret)
		return ret;
2870

2871
	if (wr->data.dma_nents != 1 || isert_prot_cmd(isert_conn, se_cmd)) {
2872 2873
		spin_lock_irqsave(&isert_conn->pool_lock, flags);
		fr_desc = list_first_entry(&isert_conn->fr_pool,
2874 2875
					   struct fast_reg_descriptor, list);
		list_del(&fr_desc->list);
2876
		spin_unlock_irqrestore(&isert_conn->pool_lock, flags);
2877
		wr->fr_desc = fr_desc;
2878 2879
	}

2880
	ret = isert_fast_reg_mr(isert_conn, fr_desc, &wr->data,
2881
				ISERT_DATA_KEY_VALID, &wr->ib_sg[DATA]);
2882 2883
	if (ret)
		goto unmap_cmd;
2884

2885
	if (isert_prot_cmd(isert_conn, se_cmd)) {
2886
		ret = isert_handle_prot_cmd(isert_conn, isert_cmd, wr);
2887
		if (ret)
2888
			goto unmap_cmd;
2889

2890 2891 2892 2893
		ib_sg = &wr->ib_sg[SIG];
	} else {
		ib_sg = &wr->ib_sg[DATA];
	}
2894

2895
	memcpy(&wr->s_ib_sge, ib_sg, sizeof(*ib_sg));
2896
	wr->ib_sge = &wr->s_ib_sge;
2897 2898 2899 2900 2901 2902
	wr->send_wr_num = 1;
	memset(&wr->s_send_wr, 0, sizeof(*send_wr));
	wr->send_wr = &wr->s_send_wr;
	wr->isert_cmd = isert_cmd;

	send_wr = &isert_cmd->rdma_wr.s_send_wr;
2903
	send_wr->sg_list = &wr->s_ib_sge;
2904
	send_wr->num_sge = 1;
2905
	send_wr->wr_id = (uintptr_t)&isert_cmd->tx_desc;
2906 2907 2908 2909
	if (wr->iser_ib_op == ISER_IB_RDMA_WRITE) {
		send_wr->opcode = IB_WR_RDMA_WRITE;
		send_wr->wr.rdma.remote_addr = isert_cmd->read_va;
		send_wr->wr.rdma.rkey = isert_cmd->read_stag;
2910
		send_wr->send_flags = !isert_prot_cmd(isert_conn, se_cmd) ?
2911
				      0 : IB_SEND_SIGNALED;
2912 2913 2914 2915 2916 2917 2918
	} else {
		send_wr->opcode = IB_WR_RDMA_READ;
		send_wr->wr.rdma.remote_addr = isert_cmd->write_va;
		send_wr->wr.rdma.rkey = isert_cmd->write_stag;
		send_wr->send_flags = IB_SEND_SIGNALED;
	}

2919
	return 0;
2920

2921 2922
unmap_cmd:
	if (fr_desc) {
2923 2924 2925
		spin_lock_irqsave(&isert_conn->pool_lock, flags);
		list_add_tail(&fr_desc->list, &isert_conn->fr_pool);
		spin_unlock_irqrestore(&isert_conn->pool_lock, flags);
2926
	}
2927
	isert_unmap_data_buf(isert_conn, &wr->data);
2928 2929 2930 2931

	return ret;
}

2932 2933 2934 2935
static int
isert_put_datain(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
{
	struct se_cmd *se_cmd = &cmd->se_cmd;
2936
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2937
	struct isert_rdma_wr *wr = &isert_cmd->rdma_wr;
2938
	struct isert_conn *isert_conn = conn->context;
2939
	struct isert_device *device = isert_conn->device;
2940 2941 2942
	struct ib_send_wr *wr_failed;
	int rc;

2943
	isert_dbg("Cmd: %p RDMA_WRITE data_length: %u\n",
2944
		 isert_cmd, se_cmd->data_length);
2945

2946
	wr->iser_ib_op = ISER_IB_RDMA_WRITE;
2947
	rc = device->reg_rdma_mem(conn, cmd, wr);
2948
	if (rc) {
2949
		isert_err("Cmd: %p failed to prepare RDMA res\n", isert_cmd);
2950 2951 2952
		return rc;
	}

2953
	if (!isert_prot_cmd(isert_conn, se_cmd)) {
2954 2955 2956 2957 2958 2959 2960 2961 2962
		/*
		 * Build isert_conn->tx_desc for iSCSI response PDU and attach
		 */
		isert_create_send_desc(isert_conn, isert_cmd,
				       &isert_cmd->tx_desc);
		iscsit_build_rsp_pdu(cmd, conn, true, (struct iscsi_scsi_rsp *)
				     &isert_cmd->tx_desc.iscsi_header);
		isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
		isert_init_send_wr(isert_conn, isert_cmd,
2963
				   &isert_cmd->tx_desc.send_wr);
2964
		isert_cmd->rdma_wr.s_send_wr.next = &isert_cmd->tx_desc.send_wr;
2965
		wr->send_wr_num += 1;
2966
	}
2967

2968
	rc = ib_post_send(isert_conn->qp, wr->send_wr, &wr_failed);
2969
	if (rc)
2970
		isert_warn("ib_post_send() failed for IB_WR_RDMA_WRITE\n");
2971

2972
	if (!isert_prot_cmd(isert_conn, se_cmd))
2973
		isert_dbg("Cmd: %p posted RDMA_WRITE + Response for iSER Data "
2974 2975
			 "READ\n", isert_cmd);
	else
2976
		isert_dbg("Cmd: %p posted RDMA_WRITE for iSER Data READ\n",
2977
			 isert_cmd);
2978

2979
	return 1;
2980 2981 2982 2983 2984 2985
}

static int
isert_get_dataout(struct iscsi_conn *conn, struct iscsi_cmd *cmd, bool recovery)
{
	struct se_cmd *se_cmd = &cmd->se_cmd;
2986
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2987
	struct isert_rdma_wr *wr = &isert_cmd->rdma_wr;
2988
	struct isert_conn *isert_conn = conn->context;
2989
	struct isert_device *device = isert_conn->device;
2990 2991
	struct ib_send_wr *wr_failed;
	int rc;
2992

2993
	isert_dbg("Cmd: %p RDMA_READ data_length: %u write_data_done: %u\n",
2994
		 isert_cmd, se_cmd->data_length, cmd->write_data_done);
2995
	wr->iser_ib_op = ISER_IB_RDMA_READ;
2996
	rc = device->reg_rdma_mem(conn, cmd, wr);
2997
	if (rc) {
2998
		isert_err("Cmd: %p failed to prepare RDMA res\n", isert_cmd);
2999
		return rc;
3000 3001
	}

3002
	rc = ib_post_send(isert_conn->qp, wr->send_wr, &wr_failed);
3003
	if (rc)
3004
		isert_warn("ib_post_send() failed for IB_WR_RDMA_READ\n");
3005

3006
	isert_dbg("Cmd: %p posted RDMA_READ memory for ISER Data WRITE\n",
3007
		 isert_cmd);
3008

3009
	return 0;
3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021
}

static int
isert_immediate_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
{
	int ret;

	switch (state) {
	case ISTATE_SEND_NOPIN_WANT_RESPONSE:
		ret = isert_put_nopin(cmd, conn, false);
		break;
	default:
3022
		isert_err("Unknown immediate state: 0x%02x\n", state);
3023 3024 3025 3026 3027 3028 3029 3030 3031 3032
		ret = -EINVAL;
		break;
	}

	return ret;
}

static int
isert_response_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
{
S
Sagi Grimberg 已提交
3033
	struct isert_conn *isert_conn = conn->context;
3034 3035 3036 3037 3038
	int ret;

	switch (state) {
	case ISTATE_SEND_LOGOUTRSP:
		ret = isert_put_logout_rsp(cmd, conn);
S
Sagi Grimberg 已提交
3039 3040
		if (!ret)
			isert_conn->logout_posted = true;
3041 3042 3043 3044 3045 3046 3047 3048 3049 3050
		break;
	case ISTATE_SEND_NOPIN:
		ret = isert_put_nopin(cmd, conn, true);
		break;
	case ISTATE_SEND_TASKMGTRSP:
		ret = isert_put_tm_rsp(cmd, conn);
		break;
	case ISTATE_SEND_REJECT:
		ret = isert_put_reject(cmd, conn);
		break;
3051 3052 3053
	case ISTATE_SEND_TEXTRSP:
		ret = isert_put_text_rsp(cmd, conn);
		break;
3054 3055 3056 3057 3058 3059 3060 3061
	case ISTATE_SEND_STATUS:
		/*
		 * Special case for sending non GOOD SCSI status from TX thread
		 * context during pre se_cmd excecution failure.
		 */
		ret = isert_put_response(conn, cmd);
		break;
	default:
3062
		isert_err("Unknown response state: 0x%02x\n", state);
3063 3064 3065 3066 3067 3068 3069
		ret = -EINVAL;
		break;
	}

	return ret;
}

3070 3071 3072 3073 3074 3075 3076 3077 3078
struct rdma_cm_id *
isert_setup_id(struct isert_np *isert_np)
{
	struct iscsi_np *np = isert_np->np;
	struct rdma_cm_id *id;
	struct sockaddr *sa;
	int ret;

	sa = (struct sockaddr *)&np->np_sockaddr;
3079
	isert_dbg("ksockaddr: %p, sa: %p\n", &np->np_sockaddr, sa);
3080 3081 3082 3083

	id = rdma_create_id(isert_cma_handler, isert_np,
			    RDMA_PS_TCP, IB_QPT_RC);
	if (IS_ERR(id)) {
3084
		isert_err("rdma_create_id() failed: %ld\n", PTR_ERR(id));
3085 3086 3087
		ret = PTR_ERR(id);
		goto out;
	}
3088
	isert_dbg("id %p context %p\n", id, id->context);
3089 3090 3091

	ret = rdma_bind_addr(id, sa);
	if (ret) {
3092
		isert_err("rdma_bind_addr() failed: %d\n", ret);
3093 3094 3095
		goto out_id;
	}

3096
	ret = rdma_listen(id, 0);
3097
	if (ret) {
3098
		isert_err("rdma_listen() failed: %d\n", ret);
3099 3100 3101 3102 3103 3104 3105 3106 3107 3108
		goto out_id;
	}

	return id;
out_id:
	rdma_destroy_id(id);
out:
	return ERR_PTR(ret);
}

3109 3110 3111 3112 3113 3114 3115 3116 3117 3118
static int
isert_setup_np(struct iscsi_np *np,
	       struct __kernel_sockaddr_storage *ksockaddr)
{
	struct isert_np *isert_np;
	struct rdma_cm_id *isert_lid;
	int ret;

	isert_np = kzalloc(sizeof(struct isert_np), GFP_KERNEL);
	if (!isert_np) {
3119
		isert_err("Unable to allocate struct isert_np\n");
3120 3121
		return -ENOMEM;
	}
3122
	sema_init(&isert_np->np_sem, 0);
3123 3124 3125
	mutex_init(&isert_np->np_accept_mutex);
	INIT_LIST_HEAD(&isert_np->np_accept_list);
	init_completion(&isert_np->np_login_comp);
3126
	isert_np->np = np;
3127 3128 3129 3130 3131 3132 3133 3134

	/*
	 * Setup the np->np_sockaddr from the passed sockaddr setup
	 * in iscsi_target_configfs.c code..
	 */
	memcpy(&np->np_sockaddr, ksockaddr,
	       sizeof(struct __kernel_sockaddr_storage));

3135
	isert_lid = isert_setup_id(isert_np);
3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147
	if (IS_ERR(isert_lid)) {
		ret = PTR_ERR(isert_lid);
		goto out;
	}

	isert_np->np_cm_id = isert_lid;
	np->np_context = isert_np;

	return 0;

out:
	kfree(isert_np);
3148

3149 3150 3151 3152 3153 3154
	return ret;
}

static int
isert_rdma_accept(struct isert_conn *isert_conn)
{
3155
	struct rdma_cm_id *cm_id = isert_conn->cm_id;
3156 3157 3158 3159 3160 3161 3162 3163 3164 3165
	struct rdma_conn_param cp;
	int ret;

	memset(&cp, 0, sizeof(struct rdma_conn_param));
	cp.initiator_depth = isert_conn->initiator_depth;
	cp.retry_count = 7;
	cp.rnr_retry_count = 7;

	ret = rdma_accept(cm_id, &cp);
	if (ret) {
3166
		isert_err("rdma_accept() failed with: %d\n", ret);
3167 3168 3169 3170 3171 3172 3173 3174 3175
		return ret;
	}

	return 0;
}

static int
isert_get_login_rx(struct iscsi_conn *conn, struct iscsi_login *login)
{
3176
	struct isert_conn *isert_conn = conn->context;
3177 3178
	int ret;

3179
	isert_info("before login_req comp conn: %p\n", isert_conn);
3180 3181
	ret = wait_for_completion_interruptible(&isert_conn->login_req_comp);
	if (ret) {
3182
		isert_err("isert_conn %p interrupted before got login req\n",
3183 3184 3185 3186 3187
			  isert_conn);
		return ret;
	}
	reinit_completion(&isert_conn->login_req_comp);

3188 3189 3190 3191 3192 3193 3194 3195
	/*
	 * For login requests after the first PDU, isert_rx_login_req() will
	 * kick schedule_delayed_work(&conn->login_work) as the packet is
	 * received, which turns this callback from iscsi_target_do_login_rx()
	 * into a NOP.
	 */
	if (!login->first_request)
		return 0;
3196

3197 3198
	isert_rx_login_req(isert_conn);

3199 3200
	isert_info("before login_comp conn: %p\n", conn);
	ret = wait_for_completion_interruptible(&isert_conn->login_comp);
3201 3202 3203
	if (ret)
		return ret;

3204
	isert_info("processing login->req: %p\n", login->req);
3205

3206 3207 3208 3209 3210 3211 3212
	return 0;
}

static void
isert_set_conn_info(struct iscsi_np *np, struct iscsi_conn *conn,
		    struct isert_conn *isert_conn)
{
3213
	struct rdma_cm_id *cm_id = isert_conn->cm_id;
3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245
	struct rdma_route *cm_route = &cm_id->route;
	struct sockaddr_in *sock_in;
	struct sockaddr_in6 *sock_in6;

	conn->login_family = np->np_sockaddr.ss_family;

	if (np->np_sockaddr.ss_family == AF_INET6) {
		sock_in6 = (struct sockaddr_in6 *)&cm_route->addr.dst_addr;
		snprintf(conn->login_ip, sizeof(conn->login_ip), "%pI6c",
			 &sock_in6->sin6_addr.in6_u);
		conn->login_port = ntohs(sock_in6->sin6_port);

		sock_in6 = (struct sockaddr_in6 *)&cm_route->addr.src_addr;
		snprintf(conn->local_ip, sizeof(conn->local_ip), "%pI6c",
			 &sock_in6->sin6_addr.in6_u);
		conn->local_port = ntohs(sock_in6->sin6_port);
	} else {
		sock_in = (struct sockaddr_in *)&cm_route->addr.dst_addr;
		sprintf(conn->login_ip, "%pI4",
			&sock_in->sin_addr.s_addr);
		conn->login_port = ntohs(sock_in->sin_port);

		sock_in = (struct sockaddr_in *)&cm_route->addr.src_addr;
		sprintf(conn->local_ip, "%pI4",
			&sock_in->sin_addr.s_addr);
		conn->local_port = ntohs(sock_in->sin_port);
	}
}

static int
isert_accept_np(struct iscsi_np *np, struct iscsi_conn *conn)
{
3246
	struct isert_np *isert_np = np->np_context;
3247
	struct isert_conn *isert_conn;
3248
	int ret;
3249 3250

accept_wait:
3251
	ret = down_interruptible(&isert_np->np_sem);
3252
	if (ret)
3253 3254 3255
		return -ENODEV;

	spin_lock_bh(&np->np_thread_lock);
3256
	if (np->np_thread_state >= ISCSI_NP_THREAD_RESET) {
3257
		spin_unlock_bh(&np->np_thread_lock);
3258
		isert_dbg("np_thread_state %d\n",
3259 3260 3261 3262 3263
			 np->np_thread_state);
		/**
		 * No point in stalling here when np_thread
		 * is in state RESET/SHUTDOWN/EXIT - bail
		 **/
3264 3265 3266 3267 3268 3269 3270 3271 3272 3273
		return -ENODEV;
	}
	spin_unlock_bh(&np->np_thread_lock);

	mutex_lock(&isert_np->np_accept_mutex);
	if (list_empty(&isert_np->np_accept_list)) {
		mutex_unlock(&isert_np->np_accept_mutex);
		goto accept_wait;
	}
	isert_conn = list_first_entry(&isert_np->np_accept_list,
3274 3275
			struct isert_conn, accept_node);
	list_del_init(&isert_conn->accept_node);
3276 3277 3278 3279 3280 3281 3282
	mutex_unlock(&isert_np->np_accept_mutex);

	conn->context = isert_conn;
	isert_conn->conn = conn;

	isert_set_conn_info(np, conn, isert_conn);

3283
	isert_dbg("Processing isert_conn: %p\n", isert_conn);
3284

3285 3286 3287 3288 3289 3290
	return 0;
}

static void
isert_free_np(struct iscsi_np *np)
{
3291
	struct isert_np *isert_np = np->np_context;
3292
	struct isert_conn *isert_conn, *n;
3293

3294 3295
	if (isert_np->np_cm_id)
		rdma_destroy_id(isert_np->np_cm_id);
3296

3297 3298 3299 3300 3301 3302 3303 3304 3305
	/*
	 * FIXME: At this point we don't have a good way to insure
	 * that at this point we don't have hanging connections that
	 * completed RDMA establishment but didn't start iscsi login
	 * process. So work-around this by cleaning up what ever piled
	 * up in np_accept_list.
	 */
	mutex_lock(&isert_np->np_accept_mutex);
	if (!list_empty(&isert_np->np_accept_list)) {
3306
		isert_info("Still have isert connections, cleaning up...\n");
3307 3308
		list_for_each_entry_safe(isert_conn, n,
					 &isert_np->np_accept_list,
3309
					 accept_node) {
3310
			isert_info("cleaning isert_conn %p state (%d)\n",
3311 3312 3313 3314 3315 3316
				   isert_conn, isert_conn->state);
			isert_connect_release(isert_conn);
		}
	}
	mutex_unlock(&isert_np->np_accept_mutex);

3317 3318 3319 3320
	np->np_context = NULL;
	kfree(isert_np);
}

3321 3322 3323 3324 3325 3326
static void isert_release_work(struct work_struct *work)
{
	struct isert_conn *isert_conn = container_of(work,
						     struct isert_conn,
						     release_work);

3327
	isert_info("Starting release conn %p\n", isert_conn);
3328

3329
	wait_for_completion(&isert_conn->wait);
3330

3331
	mutex_lock(&isert_conn->mutex);
3332
	isert_conn->state = ISER_CONN_DOWN;
3333
	mutex_unlock(&isert_conn->mutex);
3334

3335
	isert_info("Destroying conn %p\n", isert_conn);
3336 3337 3338
	isert_put_conn(isert_conn);
}

S
Sagi Grimberg 已提交
3339 3340 3341 3342 3343
static void
isert_wait4logout(struct isert_conn *isert_conn)
{
	struct iscsi_conn *conn = isert_conn->conn;

3344 3345
	isert_info("conn %p\n", isert_conn);

S
Sagi Grimberg 已提交
3346
	if (isert_conn->logout_posted) {
3347
		isert_info("conn %p wait for conn_logout_comp\n", isert_conn);
S
Sagi Grimberg 已提交
3348 3349 3350 3351 3352
		wait_for_completion_timeout(&conn->conn_logout_comp,
					    SECONDS_FOR_LOGOUT_COMP * HZ);
	}
}

3353 3354 3355
static void
isert_wait4cmds(struct iscsi_conn *conn)
{
3356 3357
	isert_info("iscsi_conn %p\n", conn);

3358 3359 3360 3361 3362 3363
	if (conn->sess) {
		target_sess_cmd_list_set_waiting(conn->sess->se_sess);
		target_wait_for_sess_cmds(conn->sess->se_sess);
	}
}

3364 3365 3366 3367 3368
static void
isert_wait4flush(struct isert_conn *isert_conn)
{
	struct ib_recv_wr *bad_wr;

3369 3370
	isert_info("conn %p\n", isert_conn);

3371
	init_completion(&isert_conn->wait_comp_err);
3372 3373
	isert_conn->beacon.wr_id = ISER_BEACON_WRID;
	/* post an indication that all flush errors were consumed */
3374
	if (ib_post_recv(isert_conn->qp, &isert_conn->beacon, &bad_wr)) {
3375
		isert_err("conn %p failed to post beacon", isert_conn);
3376 3377 3378
		return;
	}

3379
	wait_for_completion(&isert_conn->wait_comp_err);
3380 3381
}

3382
static void isert_wait_conn(struct iscsi_conn *conn)
3383 3384 3385
{
	struct isert_conn *isert_conn = conn->context;

3386
	isert_info("Starting conn %p\n", isert_conn);
3387

3388
	mutex_lock(&isert_conn->mutex);
3389
	/*
3390
	 * Only wait for wait_comp_err if the isert_conn made it
3391 3392
	 * into full feature phase..
	 */
3393
	if (isert_conn->state == ISER_CONN_INIT) {
3394
		mutex_unlock(&isert_conn->mutex);
3395
		return;
3396
	}
3397
	isert_conn_terminate(isert_conn);
3398
	mutex_unlock(&isert_conn->mutex);
3399

3400
	isert_wait4cmds(conn);
3401
	isert_wait4flush(isert_conn);
S
Sagi Grimberg 已提交
3402
	isert_wait4logout(isert_conn);
3403

3404
	queue_work(isert_release_wq, &isert_conn->release_work);
3405 3406 3407 3408 3409
}

static void isert_free_conn(struct iscsi_conn *conn)
{
	struct isert_conn *isert_conn = conn->context;
3410

3411
	isert_wait4flush(isert_conn);
3412 3413 3414 3415 3416 3417
	isert_put_conn(isert_conn);
}

static struct iscsit_transport iser_target_transport = {
	.name			= "IB/iSER",
	.transport_type		= ISCSI_INFINIBAND,
3418
	.priv_size		= sizeof(struct isert_cmd),
3419 3420 3421 3422
	.owner			= THIS_MODULE,
	.iscsit_setup_np	= isert_setup_np,
	.iscsit_accept_np	= isert_accept_np,
	.iscsit_free_np		= isert_free_np,
3423
	.iscsit_wait_conn	= isert_wait_conn,
3424 3425 3426 3427 3428 3429 3430 3431
	.iscsit_free_conn	= isert_free_conn,
	.iscsit_get_login_rx	= isert_get_login_rx,
	.iscsit_put_login_tx	= isert_put_login_tx,
	.iscsit_immediate_queue	= isert_immediate_queue,
	.iscsit_response_queue	= isert_response_queue,
	.iscsit_get_dataout	= isert_get_dataout,
	.iscsit_queue_data_in	= isert_put_datain,
	.iscsit_queue_status	= isert_put_response,
3432
	.iscsit_aborted_task	= isert_aborted_task,
3433
	.iscsit_get_sup_prot_ops = isert_get_sup_prot_ops,
3434 3435 3436 3437 3438 3439
};

static int __init isert_init(void)
{
	int ret;

3440 3441
	isert_comp_wq = alloc_workqueue("isert_comp_wq",
					WQ_UNBOUND | WQ_HIGHPRI, 0);
3442
	if (!isert_comp_wq) {
3443
		isert_err("Unable to allocate isert_comp_wq\n");
3444
		ret = -ENOMEM;
3445
		return -ENOMEM;
3446 3447
	}

3448 3449 3450
	isert_release_wq = alloc_workqueue("isert_release_wq", WQ_UNBOUND,
					WQ_UNBOUND_MAX_ACTIVE);
	if (!isert_release_wq) {
3451
		isert_err("Unable to allocate isert_release_wq\n");
3452 3453 3454 3455
		ret = -ENOMEM;
		goto destroy_comp_wq;
	}

3456
	iscsit_register_transport(&iser_target_transport);
3457
	isert_info("iSER_TARGET[0] - Loaded iser_target_transport\n");
3458

3459 3460
	return 0;

3461 3462
destroy_comp_wq:
	destroy_workqueue(isert_comp_wq);
3463

3464 3465 3466 3467 3468
	return ret;
}

static void __exit isert_exit(void)
{
3469
	flush_scheduled_work();
3470
	destroy_workqueue(isert_release_wq);
3471 3472
	destroy_workqueue(isert_comp_wq);
	iscsit_unregister_transport(&iser_target_transport);
3473
	isert_info("iSER_TARGET[0] - Released iser_target_transport\n");
3474 3475 3476
}

MODULE_DESCRIPTION("iSER-Target for mainline target infrastructure");
S
Sagi Grimberg 已提交
3477
MODULE_VERSION("1.0");
3478 3479 3480 3481 3482
MODULE_AUTHOR("nab@Linux-iSCSI.org");
MODULE_LICENSE("GPL");

module_init(isert_init);
module_exit(isert_exit);