ib_isert.c 89.4 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

#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)
37 38
#define ISER_MAX_CQ_LEN		(ISER_MAX_RX_CQ_LEN + ISER_MAX_TX_CQ_LEN + \
				 ISERT_MAX_CONN)
39

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

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

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

65
static void isert_release_work(struct work_struct *work);
66
static void isert_wait4flush(struct isert_conn *isert_conn);
67 68 69 70
static void isert_recv_done(struct ib_cq *cq, struct ib_wc *wc);
static void isert_send_done(struct ib_cq *cq, struct ib_wc *wc);
static void isert_login_recv_done(struct ib_cq *cq, struct ib_wc *wc);
static void isert_login_send_done(struct ib_cq *cq, struct ib_wc *wc);
71

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


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

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

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

100 101
static struct isert_comp *
isert_comp_get(struct isert_conn *isert_conn)
102
{
103
	struct isert_device *device = isert_conn->device;
104
	struct isert_comp *comp;
105
	int i, min = 0;
106 107

	mutex_lock(&device_list_mutex);
108 109 110 111 112 113
	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++;
114 115
	mutex_unlock(&device_list_mutex);

116
	isert_info("conn %p, using comp %p min_index: %d\n",
117
		   isert_conn, comp, min);
118 119 120 121 122 123 124 125 126

	return comp;
}

static void
isert_comp_put(struct isert_comp *comp)
{
	mutex_lock(&device_list_mutex);
	comp->active_qps--;
127
	mutex_unlock(&device_list_mutex);
128 129 130 131 132 133 134
}

static struct ib_qp *
isert_create_qp(struct isert_conn *isert_conn,
		struct isert_comp *comp,
		struct rdma_cm_id *cma_id)
{
135
	struct isert_device *device = isert_conn->device;
136 137
	struct ib_qp_init_attr attr;
	int ret;
138 139 140 141

	memset(&attr, 0, sizeof(struct ib_qp_init_attr));
	attr.event_handler = isert_qp_event_callback;
	attr.qp_context = isert_conn;
142 143
	attr.send_cq = comp->cq;
	attr.recv_cq = comp->cq;
144
	attr.cap.max_send_wr = ISERT_QP_MAX_REQ_DTOS;
145
	attr.cap.max_recv_wr = ISERT_QP_MAX_RECV_DTOS + 1;
146 147 148
	attr.cap.max_send_sge = device->ib_device->attrs.max_sge;
	isert_conn->max_sge = min(device->ib_device->attrs.max_sge,
				  device->ib_device->attrs.max_sge_rd);
149 150 151
	attr.cap.max_recv_sge = 1;
	attr.sq_sig_type = IB_SIGNAL_REQ_WR;
	attr.qp_type = IB_QPT_RC;
152
	if (device->pi_capable)
153
		attr.create_flags |= IB_QP_CREATE_SIGNATURE_EN;
154

155
	ret = rdma_create_qp(cma_id, device->pd, &attr);
156
	if (ret) {
157
		isert_err("rdma_create_qp failed for cma_id %d\n", ret);
158 159 160 161 162 163 164 165 166 167 168 169 170
		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);
171 172 173
	isert_conn->qp = isert_create_qp(isert_conn, comp, cma_id);
	if (IS_ERR(isert_conn->qp)) {
		ret = PTR_ERR(isert_conn->qp);
174
		goto err;
175 176 177
	}

	return 0;
178
err:
179
	isert_comp_put(comp);
180
	return ret;
181 182 183 184 185
}

static int
isert_alloc_rx_descriptors(struct isert_conn *isert_conn)
{
186
	struct isert_device *device = isert_conn->device;
187
	struct ib_device *ib_dev = device->ib_device;
188 189 190 191 192
	struct iser_rx_desc *rx_desc;
	struct ib_sge *rx_sg;
	u64 dma_addr;
	int i, j;

193
	isert_conn->rx_descs = kzalloc(ISERT_QP_MAX_RECV_DTOS *
194
				sizeof(struct iser_rx_desc), GFP_KERNEL);
195
	if (!isert_conn->rx_descs)
196 197
		goto fail;

198
	rx_desc = isert_conn->rx_descs;
199 200 201 202 203 204 205 206 207 208 209 210

	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;
211
		rx_sg->lkey = device->pd->local_dma_lkey;
212
		rx_desc->rx_cqe.done = isert_recv_done;
213 214 215 216 217
	}

	return 0;

dma_map_fail:
218
	rx_desc = isert_conn->rx_descs;
219 220 221 222
	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);
	}
223 224
	kfree(isert_conn->rx_descs);
	isert_conn->rx_descs = NULL;
225
fail:
226 227
	isert_err("conn %p failed to allocate rx descriptors\n", isert_conn);

228 229 230 231 232 233
	return -ENOMEM;
}

static void
isert_free_rx_descriptors(struct isert_conn *isert_conn)
{
234
	struct ib_device *ib_dev = isert_conn->device->ib_device;
235 236 237
	struct iser_rx_desc *rx_desc;
	int i;

238
	if (!isert_conn->rx_descs)
239 240
		return;

241
	rx_desc = isert_conn->rx_descs;
242 243 244 245 246
	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);
	}

247 248
	kfree(isert_conn->rx_descs);
	isert_conn->rx_descs = NULL;
249 250
}

251 252
static void
isert_free_comps(struct isert_device *device)
253
{
254
	int i;
255

256 257
	for (i = 0; i < device->comps_used; i++) {
		struct isert_comp *comp = &device->comps[i];
258

259 260
		if (comp->cq)
			ib_free_cq(comp->cq);
261
	}
262 263
	kfree(device->comps);
}
264

265
static int
266
isert_alloc_comps(struct isert_device *device)
267 268
{
	int i, max_cqe, ret = 0;
269

270
	device->comps_used = min(ISERT_MAX_CQ, min_t(int, num_online_cpus(),
271 272
				 device->ib_device->num_comp_vectors));

273
	isert_info("Using %d CQs, %s supports %d vectors support "
274 275 276 277 278 279 280 281
		   "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) {
282
		isert_err("Unable to allocate completion contexts\n");
283 284
		return -ENOMEM;
	}
285

286
	max_cqe = min(ISER_MAX_CQ_LEN, device->ib_device->attrs.max_cqe);
287

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

		comp->device = device;
292 293
		comp->cq = ib_alloc_cq(device->ib_device, comp, max_cqe, i,
				IB_POLL_WORKQUEUE);
294
		if (IS_ERR(comp->cq)) {
295
			isert_err("Unable to allocate cq\n");
296 297
			ret = PTR_ERR(comp->cq);
			comp->cq = NULL;
298
			goto out_cq;
299
		}
300 301
	}

302 303 304 305 306 307 308 309 310
	return 0;
out_cq:
	isert_free_comps(device);
	return ret;
}

static int
isert_create_device_ib_res(struct isert_device *device)
{
311
	struct ib_device *ib_dev = device->ib_device;
312
	int ret;
313

314 315
	isert_dbg("devattr->max_sge: %d\n", ib_dev->attrs.max_sge);
	isert_dbg("devattr->max_sge_rd: %d\n", ib_dev->attrs.max_sge_rd);
316 317

	/* asign function handlers */
318 319
	if (ib_dev->attrs.device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS &&
	    ib_dev->attrs.device_cap_flags & IB_DEVICE_SIGNATURE_HANDOVER) {
320 321 322 323 324 325 326 327 328
		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;
	}

329
	ret = isert_alloc_comps(device);
330
	if (ret)
331
		goto out;
332

333
	device->pd = ib_alloc_pd(ib_dev);
334 335 336 337 338 339 340
	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;
	}

341
	/* Check signature cap */
342
	device->pi_capable = ib_dev->attrs.device_cap_flags &
343
			     IB_DEVICE_SIGNATURE_HANDOVER ? true : false;
344

345 346 347
	return 0;

out_cq:
348
	isert_free_comps(device);
349 350 351
out:
	if (ret > 0)
		ret = -EINVAL;
352 353 354 355 356 357
	return ret;
}

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

360
	ib_dealloc_pd(device->pd);
361
	isert_free_comps(device);
362 363 364
}

static void
365
isert_device_put(struct isert_device *device)
366 367 368
{
	mutex_lock(&device_list_mutex);
	device->refcount--;
369
	isert_info("device %p refcount %d\n", device, device->refcount);
370 371 372 373 374 375 376 377 378
	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 *
379
isert_device_get(struct rdma_cm_id *cma_id)
380 381 382 383 384 385 386 387
{
	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++;
388 389
			isert_info("Found iser device %p refcount %d\n",
				   device, device->refcount);
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
			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);
413 414
	isert_info("Created a new iser device %p refcount %d\n",
		   device, device->refcount);
415 416 417 418 419
	mutex_unlock(&device_list_mutex);

	return device;
}

420
static void
421
isert_conn_free_fastreg_pool(struct isert_conn *isert_conn)
422 423 424 425
{
	struct fast_reg_descriptor *fr_desc, *tmp;
	int i = 0;

426
	if (list_empty(&isert_conn->fr_pool))
427 428
		return;

429
	isert_info("Freeing conn %p fastreg pool", isert_conn);
430 431

	list_for_each_entry_safe(fr_desc, tmp,
432
				 &isert_conn->fr_pool, list) {
433 434
		list_del(&fr_desc->list);
		ib_dereg_mr(fr_desc->data_mr);
435 436
		if (fr_desc->pi_ctx) {
			ib_dereg_mr(fr_desc->pi_ctx->prot_mr);
437
			ib_dereg_mr(fr_desc->pi_ctx->sig_mr);
438 439
			kfree(fr_desc->pi_ctx);
		}
440 441 442 443
		kfree(fr_desc);
		++i;
	}

444
	if (i < isert_conn->fr_pool_size)
445
		isert_warn("Pool still has %d regions registered\n",
446
			isert_conn->fr_pool_size - i);
447 448
}

449 450 451 452 453 454 455 456 457 458
static int
isert_create_pi_ctx(struct fast_reg_descriptor *desc,
		    struct ib_device *device,
		    struct ib_pd *pd)
{
	struct pi_context *pi_ctx;
	int ret;

	pi_ctx = kzalloc(sizeof(*desc->pi_ctx), GFP_KERNEL);
	if (!pi_ctx) {
459
		isert_err("Failed to allocate pi context\n");
460 461 462
		return -ENOMEM;
	}

463 464
	pi_ctx->prot_mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG,
				      ISCSI_ISER_SG_TABLESIZE);
465
	if (IS_ERR(pi_ctx->prot_mr)) {
466
		isert_err("Failed to allocate prot frmr err=%ld\n",
467 468
			  PTR_ERR(pi_ctx->prot_mr));
		ret = PTR_ERR(pi_ctx->prot_mr);
469
		goto err_pi_ctx;
470 471 472
	}
	desc->ind |= ISERT_PROT_KEY_VALID;

S
Sagi Grimberg 已提交
473
	pi_ctx->sig_mr = ib_alloc_mr(pd, IB_MR_TYPE_SIGNATURE, 2);
474
	if (IS_ERR(pi_ctx->sig_mr)) {
475
		isert_err("Failed to allocate signature enabled mr err=%ld\n",
476 477 478 479 480 481 482 483 484 485 486 487
			  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:
488
	ib_dereg_mr(pi_ctx->prot_mr);
489
err_pi_ctx:
490
	kfree(pi_ctx);
491 492 493 494

	return ret;
}

495 496
static int
isert_create_fr_desc(struct ib_device *ib_device, struct ib_pd *pd,
497
		     struct fast_reg_descriptor *fr_desc)
498
{
499 500
	fr_desc->data_mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG,
				       ISCSI_ISER_SG_TABLESIZE);
501
	if (IS_ERR(fr_desc->data_mr)) {
502
		isert_err("Failed to allocate data frmr err=%ld\n",
503
			  PTR_ERR(fr_desc->data_mr));
504
		return PTR_ERR(fr_desc->data_mr);
505
	}
506 507
	fr_desc->ind |= ISERT_DATA_KEY_VALID;

508
	isert_dbg("Created fr_desc %p\n", fr_desc);
509 510

	return 0;
511 512 513
}

static int
514
isert_conn_create_fastreg_pool(struct isert_conn *isert_conn)
515 516
{
	struct fast_reg_descriptor *fr_desc;
517
	struct isert_device *device = isert_conn->device;
518 519 520 521 522 523 524 525 526
	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;
527

528
	isert_conn->fr_pool_size = 0;
529
	for (i = 0; i < tag_num; i++) {
530 531
		fr_desc = kzalloc(sizeof(*fr_desc), GFP_KERNEL);
		if (!fr_desc) {
532
			isert_err("Failed to allocate fast_reg descriptor\n");
533 534 535 536
			ret = -ENOMEM;
			goto err;
		}

537
		ret = isert_create_fr_desc(device->ib_device,
538
					   device->pd, fr_desc);
539
		if (ret) {
540
			isert_err("Failed to create fastreg descriptor err=%d\n",
541
			       ret);
542
			kfree(fr_desc);
543 544 545
			goto err;
		}

546 547
		list_add_tail(&fr_desc->list, &isert_conn->fr_pool);
		isert_conn->fr_pool_size++;
548 549
	}

550
	isert_dbg("Creating conn %p fastreg pool size=%d",
551
		 isert_conn, isert_conn->fr_pool_size);
552 553 554 555

	return 0;

err:
556
	isert_conn_free_fastreg_pool(isert_conn);
557 558 559
	return ret;
}

560 561
static void
isert_init_conn(struct isert_conn *isert_conn)
562 563
{
	isert_conn->state = ISER_CONN_INIT;
564
	INIT_LIST_HEAD(&isert_conn->node);
565
	init_completion(&isert_conn->login_comp);
566
	init_completion(&isert_conn->login_req_comp);
567 568 569 570
	kref_init(&isert_conn->kref);
	mutex_init(&isert_conn->mutex);
	spin_lock_init(&isert_conn->pool_lock);
	INIT_LIST_HEAD(&isert_conn->fr_pool);
571
	INIT_WORK(&isert_conn->release_work, isert_release_work);
572
}
573

574 575 576
static void
isert_free_login_buf(struct isert_conn *isert_conn)
{
577
	struct ib_device *ib_dev = isert_conn->device->ib_device;
578 579

	ib_dma_unmap_single(ib_dev, isert_conn->login_rsp_dma,
580
			    ISER_RX_PAYLOAD_SIZE, DMA_TO_DEVICE);
581 582
	kfree(isert_conn->login_rsp_buf);

583
	ib_dma_unmap_single(ib_dev, isert_conn->login_req_dma,
584
			    ISER_RX_PAYLOAD_SIZE,
585
			    DMA_FROM_DEVICE);
586
	kfree(isert_conn->login_req_buf);
587 588 589 590 591 592 593
}

static int
isert_alloc_login_buf(struct isert_conn *isert_conn,
		      struct ib_device *ib_dev)
{
	int ret;
594

595 596 597
	isert_conn->login_req_buf = kzalloc(sizeof(*isert_conn->login_req_buf),
			GFP_KERNEL);
	if (!isert_conn->login_req_buf) {
598
		isert_err("Unable to allocate isert_conn->login_buf\n");
599
		return -ENOMEM;
600 601 602
	}

	isert_conn->login_req_dma = ib_dma_map_single(ib_dev,
603 604
				isert_conn->login_req_buf,
				ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
605 606
	ret = ib_dma_mapping_error(ib_dev, isert_conn->login_req_dma);
	if (ret) {
607
		isert_err("login_req_dma mapping error: %d\n", ret);
608
		isert_conn->login_req_dma = 0;
609 610 611 612 613 614 615
		goto out_free_login_req_buf;
	}

	isert_conn->login_rsp_buf = kzalloc(ISER_RX_PAYLOAD_SIZE, GFP_KERNEL);
	if (!isert_conn->login_rsp_buf) {
		isert_err("Unable to allocate isert_conn->login_rspbuf\n");
		goto out_unmap_login_req_buf;
616 617 618
	}

	isert_conn->login_rsp_dma = ib_dma_map_single(ib_dev,
619
					isert_conn->login_rsp_buf,
620
					ISER_RX_PAYLOAD_SIZE, DMA_TO_DEVICE);
621 622
	ret = ib_dma_mapping_error(ib_dev, isert_conn->login_rsp_dma);
	if (ret) {
623
		isert_err("login_rsp_dma mapping error: %d\n", ret);
624
		isert_conn->login_rsp_dma = 0;
625
		goto out_free_login_rsp_buf;
626 627
	}

628 629
	return 0;

630 631 632
out_free_login_rsp_buf:
	kfree(isert_conn->login_rsp_buf);
out_unmap_login_req_buf:
633
	ib_dma_unmap_single(ib_dev, isert_conn->login_req_dma,
634 635 636
			    ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
out_free_login_req_buf:
	kfree(isert_conn->login_req_buf);
637 638 639
	return ret;
}

640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
static void
isert_set_nego_params(struct isert_conn *isert_conn,
		      struct rdma_conn_param *param)
{
	struct ib_device_attr *attr = &isert_conn->device->ib_device->attrs;

	/* Set max inflight RDMA READ requests */
	isert_conn->initiator_depth = min_t(u8, param->initiator_depth,
				attr->max_qp_init_rd_atom);
	isert_dbg("Using initiator_depth: %u\n", isert_conn->initiator_depth);

	if (param->private_data) {
		u8 flags = *(u8 *)param->private_data;

		/*
		 * use remote invalidation if the both initiator
		 * and the HCA support it
		 */
		isert_conn->snd_w_inv = !(flags & ISER_SEND_W_INV_NOT_SUP) &&
					  (attr->device_cap_flags &
					   IB_DEVICE_MEM_MGT_EXTENSIONS);
		if (isert_conn->snd_w_inv)
			isert_info("Using remote invalidation\n");
	}
}

666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
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);
691
	isert_conn->cm_id = cma_id;
692 693 694 695 696

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

697
	device = isert_device_get(cma_id);
698 699 700 701
	if (IS_ERR(device)) {
		ret = PTR_ERR(device);
		goto out_rsp_dma_map;
	}
702
	isert_conn->device = device;
703

704
	isert_set_nego_params(isert_conn, &event->param.conn);
705

706
	ret = isert_conn_setup_qp(isert_conn, cma_id);
707 708 709
	if (ret)
		goto out_conn_dev;

710
	ret = isert_login_post_recv(isert_conn);
711 712 713 714 715 716 717
	if (ret)
		goto out_conn_dev;

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

718
	mutex_lock(&isert_np->mutex);
719
	list_add_tail(&isert_conn->node, &isert_np->accepted);
720
	mutex_unlock(&isert_np->mutex);
721 722 723 724

	return 0;

out_conn_dev:
725
	isert_device_put(device);
726
out_rsp_dma_map:
727
	isert_free_login_buf(isert_conn);
728 729
out:
	kfree(isert_conn);
730
	rdma_reject(cma_id, NULL, 0);
731 732 733 734 735 736
	return ret;
}

static void
isert_connect_release(struct isert_conn *isert_conn)
{
737
	struct isert_device *device = isert_conn->device;
738

739
	isert_dbg("conn %p\n", isert_conn);
740

741 742 743
	BUG_ON(!device);

	if (device->use_fastreg)
744
		isert_conn_free_fastreg_pool(isert_conn);
745

746
	isert_free_rx_descriptors(isert_conn);
747 748
	if (isert_conn->cm_id)
		rdma_destroy_id(isert_conn->cm_id);
749

750 751
	if (isert_conn->qp) {
		struct isert_comp *comp = isert_conn->qp->recv_cq->cq_context;
752

753
		isert_comp_put(comp);
754
		ib_destroy_qp(isert_conn->qp);
755 756
	}

757
	if (isert_conn->login_req_buf)
758 759
		isert_free_login_buf(isert_conn);

760
	isert_device_put(device);
761

762
	kfree(isert_conn);
763 764 765 766 767
}

static void
isert_connected_handler(struct rdma_cm_id *cma_id)
{
768
	struct isert_conn *isert_conn = cma_id->qp->qp_context;
769
	struct isert_np *isert_np = cma_id->context;
770

771
	isert_info("conn %p\n", isert_conn);
772

773
	mutex_lock(&isert_conn->mutex);
774 775
	isert_conn->state = ISER_CONN_UP;
	kref_get(&isert_conn->kref);
776
	mutex_unlock(&isert_conn->mutex);
777 778 779 780 781 782 783

	mutex_lock(&isert_np->mutex);
	list_move_tail(&isert_conn->node, &isert_np->pending);
	mutex_unlock(&isert_np->mutex);

	isert_info("np %p: Allow accept_np to continue\n", isert_np);
	up(&isert_np->sem);
784 785 786
}

static void
787
isert_release_kref(struct kref *kref)
788 789
{
	struct isert_conn *isert_conn = container_of(kref,
790
				struct isert_conn, kref);
791

792 793
	isert_info("conn %p final kref %s/%d\n", isert_conn, current->comm,
		   current->pid);
794 795 796 797 798 799 800

	isert_connect_release(isert_conn);
}

static void
isert_put_conn(struct isert_conn *isert_conn)
{
801
	kref_put(&isert_conn->kref, isert_release_kref);
802 803
}

804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
static void
isert_handle_unbound_conn(struct isert_conn *isert_conn)
{
	struct isert_np *isert_np = isert_conn->cm_id->context;

	mutex_lock(&isert_np->mutex);
	if (!list_empty(&isert_conn->node)) {
		/*
		 * This means iscsi doesn't know this connection
		 * so schedule a cleanup ourselves
		 */
		list_del_init(&isert_conn->node);
		isert_put_conn(isert_conn);
		queue_work(isert_release_wq, &isert_conn->release_work);
	}
	mutex_unlock(&isert_np->mutex);
}

822 823 824 825 826
/**
 * isert_conn_terminate() - Initiate connection termination
 * @isert_conn: isert connection struct
 *
 * Notes:
827
 * In case the connection state is BOUND, move state
828
 * to TEMINATING and start teardown sequence (rdma_disconnect).
829
 * In case the connection state is UP, complete flush as well.
830
 *
831
 * This routine must be called with mutex held. Thus it is
832 833 834 835 836 837 838
 * safe to call multiple times.
 */
static void
isert_conn_terminate(struct isert_conn *isert_conn)
{
	int err;

839 840 841 842 843 844 845 846 847 848
	if (isert_conn->state >= ISER_CONN_TERMINATING)
		return;

	isert_info("Terminating conn %p state %d\n",
		   isert_conn, isert_conn->state);
	isert_conn->state = ISER_CONN_TERMINATING;
	err = rdma_disconnect(isert_conn->cm_id);
	if (err)
		isert_warn("Failed rdma_disconnect isert_conn %p\n",
			   isert_conn);
849 850
}

851
static int
852 853
isert_np_cma_handler(struct isert_np *isert_np,
		     enum rdma_cm_event_type event)
854
{
855 856
	isert_dbg("%s (%d): isert np %p\n",
		  rdma_event_msg(event), event, isert_np);
857

858 859
	switch (event) {
	case RDMA_CM_EVENT_DEVICE_REMOVAL:
860
		isert_np->cm_id = NULL;
861 862
		break;
	case RDMA_CM_EVENT_ADDR_CHANGE:
863 864
		isert_np->cm_id = isert_setup_id(isert_np);
		if (IS_ERR(isert_np->cm_id)) {
865
			isert_err("isert np %p setup id failed: %ld\n",
866 867
				  isert_np, PTR_ERR(isert_np->cm_id));
			isert_np->cm_id = NULL;
868 869 870
		}
		break;
	default:
871
		isert_err("isert np %p Unexpected event %d\n",
872
			  isert_np, event);
873 874
	}

875 876 877 878 879 880 881
	return -1;
}

static int
isert_disconnected_handler(struct rdma_cm_id *cma_id,
			   enum rdma_cm_event_type event)
{
882
	struct isert_conn *isert_conn = cma_id->qp->qp_context;
883

884
	mutex_lock(&isert_conn->mutex);
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
	switch (isert_conn->state) {
	case ISER_CONN_TERMINATING:
		break;
	case ISER_CONN_UP:
		isert_conn_terminate(isert_conn);
		isert_wait4flush(isert_conn);
		isert_handle_unbound_conn(isert_conn);
		break;
	case ISER_CONN_BOUND:
	case ISER_CONN_FULL_FEATURE: /* FALLTHRU */
		iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
		break;
	default:
		isert_warn("conn %p teminating in state %d\n",
			   isert_conn, isert_conn->state);
900
	}
901
	mutex_unlock(&isert_conn->mutex);
902

903
	return 0;
904 905
}

906
static int
907 908
isert_connect_error(struct rdma_cm_id *cma_id)
{
909
	struct isert_conn *isert_conn = cma_id->qp->qp_context;
910

911
	list_del_init(&isert_conn->node);
912
	isert_conn->cm_id = NULL;
913
	isert_put_conn(isert_conn);
914 915

	return -1;
916 917
}

918 919 920
static int
isert_cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
{
921
	struct isert_np *isert_np = cma_id->context;
922 923
	int ret = 0;

924 925
	isert_info("%s (%d): status %d id %p np %p\n",
		   rdma_event_msg(event->event), event->event,
926
		   event->status, cma_id, cma_id->context);
927

928 929 930
	if (isert_np->cm_id == cma_id)
		return isert_np_cma_handler(cma_id->context, event->event);

931 932 933
	switch (event->event) {
	case RDMA_CM_EVENT_CONNECT_REQUEST:
		ret = isert_connect_request(cma_id, event);
934
		if (ret)
935
			isert_err("failed handle connect request %d\n", ret);
936 937 938 939
		break;
	case RDMA_CM_EVENT_ESTABLISHED:
		isert_connected_handler(cma_id);
		break;
940 941 942 943
	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 */
944
		ret = isert_disconnected_handler(cma_id, event->event);
945
		break;
946 947
	case RDMA_CM_EVENT_REJECTED:       /* FALLTHRU */
	case RDMA_CM_EVENT_UNREACHABLE:    /* FALLTHRU */
948
	case RDMA_CM_EVENT_CONNECT_ERROR:
949
		ret = isert_connect_error(cma_id);
950
		break;
951
	default:
952
		isert_err("Unhandled RDMA CMA event: %d\n", event->event);
953 954 955 956 957 958 959
		break;
	}

	return ret;
}

static int
960
isert_post_recvm(struct isert_conn *isert_conn, u32 count)
961 962 963 964 965
{
	struct ib_recv_wr *rx_wr, *rx_wr_failed;
	int i, ret;
	struct iser_rx_desc *rx_desc;

966
	for (rx_wr = isert_conn->rx_wr, i = 0; i < count; i++, rx_wr++) {
967
		rx_desc = &isert_conn->rx_descs[i];
968 969

		rx_wr->wr_cqe = &rx_desc->rx_cqe;
970 971 972
		rx_wr->sg_list = &rx_desc->rx_sg;
		rx_wr->num_sge = 1;
		rx_wr->next = rx_wr + 1;
973 974 975 976
	}
	rx_wr--;
	rx_wr->next = NULL; /* mark end of work requests list */

977
	ret = ib_post_recv(isert_conn->qp, isert_conn->rx_wr,
978
			   &rx_wr_failed);
979
	if (ret)
980
		isert_err("ib_post_recv() failed with ret: %d\n", ret);
981 982 983 984 985 986 987 988 989 990

	return ret;
}

static int
isert_post_recv(struct isert_conn *isert_conn, struct iser_rx_desc *rx_desc)
{
	struct ib_recv_wr *rx_wr_failed, rx_wr;
	int ret;

991
	rx_wr.wr_cqe = &rx_desc->rx_cqe;
992 993 994 995 996
	rx_wr.sg_list = &rx_desc->rx_sg;
	rx_wr.num_sge = 1;
	rx_wr.next = NULL;

	ret = ib_post_recv(isert_conn->qp, &rx_wr, &rx_wr_failed);
997
	if (ret)
998 999
		isert_err("ib_post_recv() failed with ret: %d\n", ret);

1000 1001 1002 1003
	return ret;
}

static int
1004
isert_login_post_send(struct isert_conn *isert_conn, struct iser_tx_desc *tx_desc)
1005
{
1006
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1007 1008 1009 1010 1011 1012
	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);

1013 1014
	tx_desc->tx_cqe.done = isert_login_send_done;

1015
	send_wr.next	= NULL;
1016
	send_wr.wr_cqe	= &tx_desc->tx_cqe;
1017 1018 1019 1020 1021
	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;

1022
	ret = ib_post_send(isert_conn->qp, &send_wr, &send_wr_failed);
1023
	if (ret)
1024
		isert_err("ib_post_send() failed, ret: %d\n", ret);
1025 1026 1027 1028 1029 1030 1031 1032 1033

	return ret;
}

static void
isert_create_send_desc(struct isert_conn *isert_conn,
		       struct isert_cmd *isert_cmd,
		       struct iser_tx_desc *tx_desc)
{
1034
	struct isert_device *device = isert_conn->device;
1035
	struct ib_device *ib_dev = device->ib_device;
1036 1037 1038 1039

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

1040 1041
	memset(&tx_desc->iser_header, 0, sizeof(struct iser_ctrl));
	tx_desc->iser_header.flags = ISCSI_CTRL;
1042 1043 1044 1045

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

1046 1047
	if (tx_desc->tx_sg[0].lkey != device->pd->local_dma_lkey) {
		tx_desc->tx_sg[0].lkey = device->pd->local_dma_lkey;
1048
		isert_dbg("tx_desc %p lkey mismatch, fixing\n", tx_desc);
1049 1050 1051 1052 1053 1054 1055
	}
}

static int
isert_init_tx_hdrs(struct isert_conn *isert_conn,
		   struct iser_tx_desc *tx_desc)
{
1056
	struct isert_device *device = isert_conn->device;
1057
	struct ib_device *ib_dev = device->ib_device;
1058 1059 1060 1061 1062
	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)) {
1063
		isert_err("ib_dma_mapping_error() failed\n");
1064 1065 1066 1067 1068 1069
		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;
1070
	tx_desc->tx_sg[0].lkey = device->pd->local_dma_lkey;
1071

1072 1073 1074
	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);
1075 1076 1077 1078 1079

	return 0;
}

static void
1080
isert_init_send_wr(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
1081
		   struct ib_send_wr *send_wr)
1082
{
1083 1084
	struct iser_tx_desc *tx_desc = &isert_cmd->tx_desc;

1085
	isert_cmd->iser_ib_op = ISER_IB_SEND;
1086 1087
	tx_desc->tx_cqe.done = isert_send_done;
	send_wr->wr_cqe = &tx_desc->tx_cqe;
1088 1089 1090 1091 1092 1093 1094 1095

	if (isert_conn->snd_w_inv && isert_cmd->inv_rkey) {
		send_wr->opcode  = IB_WR_SEND_WITH_INV;
		send_wr->ex.invalidate_rkey = isert_cmd->inv_rkey;
	} else {
		send_wr->opcode = IB_WR_SEND;
	}

1096
	send_wr->sg_list = &tx_desc->tx_sg[0];
1097
	send_wr->num_sge = isert_cmd->tx_desc.num_sge;
1098
	send_wr->send_flags = IB_SEND_SIGNALED;
1099 1100 1101
}

static int
1102
isert_login_post_recv(struct isert_conn *isert_conn)
1103 1104 1105 1106 1107 1108 1109
{
	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;
1110
	sge.length = ISER_RX_PAYLOAD_SIZE;
1111
	sge.lkey = isert_conn->device->pd->local_dma_lkey;
1112

1113
	isert_dbg("Setup sge: addr: %llx length: %d 0x%08x\n",
1114 1115
		sge.addr, sge.length, sge.lkey);

1116 1117
	isert_conn->login_req_buf->rx_cqe.done = isert_login_recv_done;

1118
	memset(&rx_wr, 0, sizeof(struct ib_recv_wr));
1119
	rx_wr.wr_cqe = &isert_conn->login_req_buf->rx_cqe;
1120 1121 1122
	rx_wr.sg_list = &sge;
	rx_wr.num_sge = 1;

1123
	ret = ib_post_recv(isert_conn->qp, &rx_wr, &rx_wr_fail);
1124
	if (ret)
1125
		isert_err("ib_post_recv() failed: %d\n", ret);
1126 1127 1128 1129 1130 1131 1132 1133 1134

	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;
1135
	struct isert_device *device = isert_conn->device;
1136
	struct ib_device *ib_dev = device->ib_device;
1137
	struct iser_tx_desc *tx_desc = &isert_conn->login_tx_desc;
1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
	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;
1160
		tx_dsg->lkey	= isert_conn->device->pd->local_dma_lkey;
1161 1162 1163 1164
		tx_desc->num_sge = 2;
	}
	if (!login->login_failed) {
		if (login->login_complete) {
1165
			if (!conn->sess->sess_ops->SessionType &&
1166
			    isert_conn->device->use_fastreg) {
1167
				ret = isert_conn_create_fastreg_pool(isert_conn);
1168
				if (ret) {
1169
					isert_err("Conn: %p failed to create"
1170 1171 1172 1173 1174
					       " fastreg pool\n", isert_conn);
					return ret;
				}
			}

1175 1176 1177 1178
			ret = isert_alloc_rx_descriptors(isert_conn);
			if (ret)
				return ret;

1179 1180
			ret = isert_post_recvm(isert_conn,
					       ISERT_QP_MAX_RECV_DTOS);
1181 1182 1183
			if (ret)
				return ret;

1184
			/* Now we are in FULL_FEATURE phase */
1185
			mutex_lock(&isert_conn->mutex);
1186
			isert_conn->state = ISER_CONN_FULL_FEATURE;
1187
			mutex_unlock(&isert_conn->mutex);
1188 1189 1190
			goto post_send;
		}

1191
		ret = isert_login_post_recv(isert_conn);
1192 1193 1194 1195
		if (ret)
			return ret;
	}
post_send:
1196
	ret = isert_login_post_send(isert_conn, tx_desc);
1197 1198 1199 1200 1201 1202 1203
	if (ret)
		return ret;

	return 0;
}

static void
1204
isert_rx_login_req(struct isert_conn *isert_conn)
1205
{
1206
	struct iser_rx_desc *rx_desc = isert_conn->login_req_buf;
1207
	int rx_buflen = isert_conn->login_req_len;
1208 1209 1210 1211
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_login *login = conn->conn_login;
	int size;

1212
	isert_info("conn %p\n", isert_conn);
1213 1214

	WARN_ON_ONCE(!login);
1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239

	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);
1240 1241 1242
	isert_dbg("Using login payload size: %d, rx_buflen: %d "
		  "MAX_KEY_VALUE_PAIRS: %d\n", size, rx_buflen,
		  MAX_KEY_VALUE_PAIRS);
1243 1244
	memcpy(login->req_buf, &rx_desc->data[0], size);

1245
	if (login->first_request) {
1246
		complete(&isert_conn->login_comp);
1247 1248 1249
		return;
	}
	schedule_delayed_work(&conn->login_work, 0);
1250 1251 1252
}

static struct iscsi_cmd
1253
*isert_allocate_cmd(struct iscsi_conn *conn, struct iser_rx_desc *rx_desc)
1254
{
1255
	struct isert_conn *isert_conn = conn->context;
1256
	struct isert_cmd *isert_cmd;
1257
	struct iscsi_cmd *cmd;
1258

1259
	cmd = iscsit_allocate_cmd(conn, TASK_INTERRUPTIBLE);
1260
	if (!cmd) {
1261
		isert_err("Unable to allocate iscsi_cmd + isert_cmd\n");
1262 1263
		return NULL;
	}
1264
	isert_cmd = iscsit_priv_cmd(cmd);
1265
	isert_cmd->conn = isert_conn;
1266
	isert_cmd->iscsi_cmd = cmd;
1267
	isert_cmd->rx_desc = rx_desc;
1268

1269
	return cmd;
1270 1271 1272 1273
}

static int
isert_handle_scsi_cmd(struct isert_conn *isert_conn,
1274 1275
		      struct isert_cmd *isert_cmd, struct iscsi_cmd *cmd,
		      struct iser_rx_desc *rx_desc, unsigned char *buf)
1276 1277 1278 1279 1280
{
	struct iscsi_conn *conn = isert_conn->conn;
	struct iscsi_scsi_req *hdr = (struct iscsi_scsi_req *)buf;
	int imm_data, imm_data_len, unsol_data, sg_nents, rc;
	bool dump_payload = false;
1281
	unsigned int data_len;
1282 1283 1284 1285 1286 1287 1288 1289

	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;
1290
	data_len = cmd->se_cmd.data_length;
1291

1292 1293
	if (imm_data && imm_data_len == data_len)
		cmd->se_cmd.se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
	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;

1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
	if (imm_data_len != data_len) {
		sg_nents = max(1UL, DIV_ROUND_UP(imm_data_len, PAGE_SIZE));
		sg_copy_from_buffer(cmd->se_cmd.t_data_sg, sg_nents,
				    &rx_desc->data[0], imm_data_len);
		isert_dbg("Copy Immediate sg_nents: %u imm_data_len: %d\n",
			  sg_nents, imm_data_len);
	} else {
		sg_init_table(&isert_cmd->sg, 1);
		cmd->se_cmd.t_data_sg = &isert_cmd->sg;
		cmd->se_cmd.t_data_nents = 1;
		sg_set_buf(&isert_cmd->sg, &rx_desc->data[0], imm_data_len);
		isert_dbg("Transfer Immediate imm_data_len: %d\n",
			  imm_data_len);
	}
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329

	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:
1330
	rc = iscsit_sequence_cmd(conn, cmd, buf, hdr->cmdsn);
1331 1332 1333

	if (!rc && dump_payload == false && unsol_data)
		iscsit_set_unsoliticed_dataout(cmd);
1334
	else if (dump_payload && imm_data)
1335
		target_put_sess_cmd(&cmd->se_cmd);
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359

	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) {
1360
		isert_err("Received unexpected solicited data payload\n");
1361 1362 1363 1364
		dump_stack();
		return -1;
	}

1365 1366 1367 1368
	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);
1369 1370 1371 1372 1373 1374 1375 1376 1377

	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) {
1378
		isert_err("unexpected non-page aligned data payload\n");
1379 1380 1381
		dump_stack();
		return -1;
	}
1382 1383 1384
	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);
1385 1386 1387 1388 1389 1390 1391 1392

	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;

1393 1394 1395 1396 1397 1398 1399 1400 1401
	/*
	 * multiple data-outs on the same command can arrive -
	 * so post the buffer before hand
	 */
	rc = isert_post_recv(isert_conn, rx_desc);
	if (rc) {
		isert_err("ib_post_recv failed with %d\n", rc);
		return rc;
	}
1402 1403 1404
	return 0;
}

1405 1406
static int
isert_handle_nop_out(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
1407 1408
		     struct iscsi_cmd *cmd, struct iser_rx_desc *rx_desc,
		     unsigned char *buf)
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
{
	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);
}

1424 1425
static int
isert_handle_text_cmd(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
1426 1427
		      struct iscsi_cmd *cmd, struct iser_rx_desc *rx_desc,
		      struct iscsi_text *hdr)
1428 1429 1430 1431
{
	struct iscsi_conn *conn = isert_conn->conn;
	u32 payload_length = ntoh24(hdr->dlength);
	int rc;
1432
	unsigned char *text_in = NULL;
1433 1434 1435 1436 1437

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

1438 1439 1440 1441 1442 1443 1444
	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;
		}
1445 1446 1447 1448 1449 1450 1451 1452
	}
	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);
}

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464
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);

1465
	if (conn->sess->sess_ops->SessionType &&
1466
	   (!(opcode & ISCSI_OP_TEXT) || !(opcode & ISCSI_OP_LOGOUT))) {
1467
		isert_err("Got illegal opcode: 0x%02x in SessionType=Discovery,"
1468
			  " ignoring\n", opcode);
1469 1470 1471
		return 0;
	}

1472 1473
	switch (opcode) {
	case ISCSI_OP_SCSI_CMD:
1474
		cmd = isert_allocate_cmd(conn, rx_desc);
1475 1476 1477
		if (!cmd)
			break;

1478
		isert_cmd = iscsit_priv_cmd(cmd);
1479 1480 1481 1482
		isert_cmd->read_stag = read_stag;
		isert_cmd->read_va = read_va;
		isert_cmd->write_stag = write_stag;
		isert_cmd->write_va = write_va;
1483
		isert_cmd->inv_rkey = read_stag ? read_stag : write_stag;
1484

1485
		ret = isert_handle_scsi_cmd(isert_conn, isert_cmd, cmd,
1486 1487 1488
					rx_desc, (unsigned char *)hdr);
		break;
	case ISCSI_OP_NOOP_OUT:
1489
		cmd = isert_allocate_cmd(conn, rx_desc);
1490 1491 1492
		if (!cmd)
			break;

1493 1494
		isert_cmd = iscsit_priv_cmd(cmd);
		ret = isert_handle_nop_out(isert_conn, isert_cmd, cmd,
1495
					   rx_desc, (unsigned char *)hdr);
1496 1497 1498 1499 1500 1501
		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:
1502
		cmd = isert_allocate_cmd(conn, rx_desc);
1503 1504 1505 1506 1507 1508 1509
		if (!cmd)
			break;

		ret = iscsit_handle_task_mgt_cmd(conn, cmd,
						(unsigned char *)hdr);
		break;
	case ISCSI_OP_LOGOUT:
1510
		cmd = isert_allocate_cmd(conn, rx_desc);
1511 1512 1513 1514 1515
		if (!cmd)
			break;

		ret = iscsit_handle_logout_cmd(conn, cmd, (unsigned char *)hdr);
		break;
1516
	case ISCSI_OP_TEXT:
1517
		if (be32_to_cpu(hdr->ttt) != 0xFFFFFFFF)
1518
			cmd = iscsit_find_cmd_from_itt(conn, hdr->itt);
1519 1520 1521 1522 1523
		else
			cmd = isert_allocate_cmd(conn, rx_desc);

		if (!cmd)
			break;
1524

1525 1526
		isert_cmd = iscsit_priv_cmd(cmd);
		ret = isert_handle_text_cmd(isert_conn, isert_cmd, cmd,
1527 1528
					    rx_desc, (struct iscsi_text *)hdr);
		break;
1529
	default:
1530
		isert_err("Got unknown iSCSI OpCode: 0x%02x\n", opcode);
1531 1532 1533 1534 1535 1536 1537 1538
		dump_stack();
		break;
	}

	return ret;
}

static void
1539
isert_print_wc(struct ib_wc *wc, const char *type)
1540
{
1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
	if (wc->status != IB_WC_WR_FLUSH_ERR)
		isert_err("%s failure: %s (%d) vend_err %x\n", type,
			  ib_wc_status_msg(wc->status), wc->status,
			  wc->vendor_err);
	else
		isert_dbg("%s failure: %s (%d)\n", type,
			  ib_wc_status_msg(wc->status), wc->status);
}

static void
isert_recv_done(struct ib_cq *cq, struct ib_wc *wc)
{
	struct isert_conn *isert_conn = wc->qp->qp_context;
	struct ib_device *ib_dev = isert_conn->cm_id->device;
	struct iser_rx_desc *rx_desc = cqe_to_rx_desc(wc->wr_cqe);
	struct iscsi_hdr *hdr = &rx_desc->iscsi_header;
1557
	struct iser_ctrl *iser_ctrl = &rx_desc->iser_header;
1558 1559 1560
	uint64_t read_va = 0, write_va = 0;
	uint32_t read_stag = 0, write_stag = 0;

1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		isert_print_wc(wc, "recv");
		if (wc->status != IB_WC_WR_FLUSH_ERR)
			iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
		return;
	}

	ib_dma_sync_single_for_cpu(ib_dev, rx_desc->dma_addr,
			ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);

	isert_dbg("DMA: 0x%llx, iSCSI opcode: 0x%02x, ITT: 0x%08x, flags: 0x%02x dlen: %d\n",
		 rx_desc->dma_addr, hdr->opcode, hdr->itt, hdr->flags,
		 (int)(wc->byte_len - ISER_HEADERS_LEN));

1575
	switch (iser_ctrl->flags & 0xF0) {
1576
	case ISCSI_CTRL:
1577 1578 1579
		if (iser_ctrl->flags & ISER_RSV) {
			read_stag = be32_to_cpu(iser_ctrl->read_stag);
			read_va = be64_to_cpu(iser_ctrl->read_va);
1580 1581
			isert_dbg("ISER_RSV: read_stag: 0x%x read_va: 0x%llx\n",
				  read_stag, (unsigned long long)read_va);
1582
		}
1583 1584 1585
		if (iser_ctrl->flags & ISER_WSV) {
			write_stag = be32_to_cpu(iser_ctrl->write_stag);
			write_va = be64_to_cpu(iser_ctrl->write_va);
1586 1587
			isert_dbg("ISER_WSV: write_stag: 0x%x write_va: 0x%llx\n",
				  write_stag, (unsigned long long)write_va);
1588 1589
		}

1590
		isert_dbg("ISER ISCSI_CTRL PDU\n");
1591 1592
		break;
	case ISER_HELLO:
1593
		isert_err("iSER Hello message\n");
1594 1595
		break;
	default:
1596
		isert_warn("Unknown iSER hdr flags: 0x%02x\n", iser_ctrl->flags);
1597 1598 1599
		break;
	}

1600 1601
	isert_rx_opcode(isert_conn, rx_desc,
			read_stag, read_va, write_stag, write_va);
1602 1603 1604

	ib_dma_sync_single_for_device(ib_dev, rx_desc->dma_addr,
			ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
1605 1606 1607
}

static void
1608
isert_login_recv_done(struct ib_cq *cq, struct ib_wc *wc)
1609
{
1610
	struct isert_conn *isert_conn = wc->qp->qp_context;
1611
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1612 1613 1614 1615

	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		isert_print_wc(wc, "login recv");
		return;
1616 1617
	}

1618 1619
	ib_dma_sync_single_for_cpu(ib_dev, isert_conn->login_req_dma,
			ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
1620

1621
	isert_conn->login_req_len = wc->byte_len - ISER_HEADERS_LEN;
1622

1623 1624
	if (isert_conn->conn) {
		struct iscsi_login *login = isert_conn->conn->conn_login;
1625

1626 1627
		if (login && !login->first_request)
			isert_rx_login_req(isert_conn);
1628
	}
1629

1630 1631 1632
	mutex_lock(&isert_conn->mutex);
	complete(&isert_conn->login_req_comp);
	mutex_unlock(&isert_conn->mutex);
1633

1634 1635
	ib_dma_sync_single_for_device(ib_dev, isert_conn->login_req_dma,
				ISER_RX_PAYLOAD_SIZE, DMA_FROM_DEVICE);
1636 1637
}

1638 1639 1640 1641 1642
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)
{
1643
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660

	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)) {
1661
		isert_err("Cmd: unable to dma map SGs %p\n", sg);
1662 1663 1664
		return -EINVAL;
	}

1665
	isert_dbg("Mapped cmd: %p count: %u sg: %p sg_nents: %u rdma_len %d\n",
1666
		  isert_cmd, data->dma_nents, data->sg, data->nents, data->len);
1667 1668 1669 1670 1671 1672 1673

	return 0;
}

static void
isert_unmap_data_buf(struct isert_conn *isert_conn, struct isert_data_buf *data)
{
1674
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1675 1676 1677 1678 1679 1680 1681

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



1682 1683 1684
static void
isert_unmap_cmd(struct isert_cmd *isert_cmd, struct isert_conn *isert_conn)
{
1685
	isert_dbg("Cmd %p\n", isert_cmd);
1686

1687
	if (isert_cmd->data.sg) {
1688
		isert_dbg("Cmd %p unmap_sg op\n", isert_cmd);
1689
		isert_unmap_data_buf(isert_conn, &isert_cmd->data);
1690 1691
	}

1692
	if (isert_cmd->rdma_wr) {
1693
		isert_dbg("Cmd %p free send_wr\n", isert_cmd);
1694 1695
		kfree(isert_cmd->rdma_wr);
		isert_cmd->rdma_wr = NULL;
1696
	}
1697

1698
	if (isert_cmd->ib_sge) {
1699
		isert_dbg("Cmd %p free ib_sge\n", isert_cmd);
1700 1701
		kfree(isert_cmd->ib_sge);
		isert_cmd->ib_sge = NULL;
1702
	}
1703 1704
}

1705
static void
1706
isert_unreg_rdma(struct isert_cmd *isert_cmd, struct isert_conn *isert_conn)
1707
{
1708
	isert_dbg("Cmd %p\n", isert_cmd);
1709

1710 1711 1712 1713 1714
	if (isert_cmd->fr_desc) {
		isert_dbg("Cmd %p free fr_desc %p\n", isert_cmd, isert_cmd->fr_desc);
		if (isert_cmd->fr_desc->ind & ISERT_PROTECTED) {
			isert_unmap_data_buf(isert_conn, &isert_cmd->prot);
			isert_cmd->fr_desc->ind &= ~ISERT_PROTECTED;
1715
		}
1716
		spin_lock_bh(&isert_conn->pool_lock);
1717
		list_add_tail(&isert_cmd->fr_desc->list, &isert_conn->fr_pool);
1718
		spin_unlock_bh(&isert_conn->pool_lock);
1719
		isert_cmd->fr_desc = NULL;
1720 1721
	}

1722
	if (isert_cmd->data.sg) {
1723
		isert_dbg("Cmd %p unmap_sg op\n", isert_cmd);
1724
		isert_unmap_data_buf(isert_conn, &isert_cmd->data);
1725 1726
	}

1727 1728
	isert_cmd->ib_sge = NULL;
	isert_cmd->rdma_wr = NULL;
1729 1730
}

1731
static void
1732
isert_put_cmd(struct isert_cmd *isert_cmd, bool comp_err)
1733
{
1734
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1735
	struct isert_conn *isert_conn = isert_cmd->conn;
1736
	struct iscsi_conn *conn = isert_conn->conn;
1737
	struct isert_device *device = isert_conn->device;
1738
	struct iscsi_text_rsp *hdr;
1739

1740
	isert_dbg("Cmd %p\n", isert_cmd);
1741 1742 1743 1744 1745

	switch (cmd->iscsi_opcode) {
	case ISCSI_OP_SCSI_CMD:
		spin_lock_bh(&conn->cmd_lock);
		if (!list_empty(&cmd->i_conn_node))
1746
			list_del_init(&cmd->i_conn_node);
1747 1748
		spin_unlock_bh(&conn->cmd_lock);

1749
		if (cmd->data_direction == DMA_TO_DEVICE) {
1750
			iscsit_stop_dataout_timer(cmd);
1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
			/*
			 * 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;

1761
				target_put_sess_cmd(se_cmd);
1762 1763
			}
		}
1764

1765
		device->unreg_rdma_mem(isert_cmd, isert_conn);
1766 1767
		transport_generic_free_cmd(&cmd->se_cmd, 0);
		break;
1768
	case ISCSI_OP_SCSI_TMFUNC:
1769 1770
		spin_lock_bh(&conn->cmd_lock);
		if (!list_empty(&cmd->i_conn_node))
1771
			list_del_init(&cmd->i_conn_node);
1772 1773
		spin_unlock_bh(&conn->cmd_lock);

1774 1775 1776 1777
		transport_generic_free_cmd(&cmd->se_cmd, 0);
		break;
	case ISCSI_OP_REJECT:
	case ISCSI_OP_NOOP_OUT:
1778
	case ISCSI_OP_TEXT:
1779 1780 1781 1782 1783
		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;

1784 1785
		spin_lock_bh(&conn->cmd_lock);
		if (!list_empty(&cmd->i_conn_node))
1786
			list_del_init(&cmd->i_conn_node);
1787 1788 1789 1790 1791 1792 1793 1794
		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) {
1795
			isert_dbg("Calling transport_generic_free_cmd for 0x%02x\n",
1796
				 cmd->iscsi_opcode);
1797 1798 1799 1800 1801 1802 1803
			transport_generic_free_cmd(&cmd->se_cmd, 0);
			break;
		}
		/*
		 * Fall-through
		 */
	default:
1804
		iscsit_release_cmd(cmd);
1805 1806 1807 1808 1809 1810 1811 1812
		break;
	}
}

static void
isert_unmap_tx_desc(struct iser_tx_desc *tx_desc, struct ib_device *ib_dev)
{
	if (tx_desc->dma_addr != 0) {
1813
		isert_dbg("unmap single for tx_desc->dma_addr\n");
1814 1815 1816 1817 1818 1819 1820 1821
		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,
1822
		     struct ib_device *ib_dev, bool comp_err)
1823
{
1824
	if (isert_cmd->pdu_buf_dma != 0) {
1825
		isert_dbg("unmap single for isert_cmd->pdu_buf_dma\n");
1826 1827 1828
		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;
1829 1830 1831
	}

	isert_unmap_tx_desc(tx_desc, ib_dev);
1832
	isert_put_cmd(isert_cmd, comp_err);
1833 1834
}

1835 1836 1837 1838 1839 1840 1841 1842
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) {
1843
		isert_err("ib_check_mr_status failed, ret %d\n", ret);
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865
		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;

1866 1867 1868 1869 1870 1871
		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);
1872 1873 1874 1875 1876 1877 1878
		ret = 1;
	}

fail_mr_status:
	return ret;
}

1879
static void
1880
isert_rdma_write_done(struct ib_cq *cq, struct ib_wc *wc)
1881
{
1882
	struct isert_conn *isert_conn = wc->qp->qp_context;
1883
	struct isert_device *device = isert_conn->device;
1884 1885 1886
	struct iser_tx_desc *desc = cqe_to_tx_desc(wc->wr_cqe);
	struct isert_cmd *isert_cmd = desc->isert_cmd;
	struct se_cmd *cmd = &isert_cmd->iscsi_cmd->se_cmd;
1887 1888
	int ret = 0;

1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		isert_print_wc(wc, "rdma write");
		if (wc->status != IB_WC_WR_FLUSH_ERR)
			iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
		isert_completion_put(desc, isert_cmd, device->ib_device, true);
		return;
	}

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

1899 1900 1901 1902
	if (isert_cmd->fr_desc && isert_cmd->fr_desc->ind & ISERT_PROTECTED) {
		ret = isert_check_pi_status(cmd,
				isert_cmd->fr_desc->pi_ctx->sig_mr);
		isert_cmd->fr_desc->ind &= ~ISERT_PROTECTED;
1903
	}
1904 1905

	device->unreg_rdma_mem(isert_cmd, isert_conn);
1906
	isert_cmd->rdma_wr_num = 0;
1907
	if (ret)
1908
		transport_send_check_condition_and_sense(cmd, cmd->pi_err, 0);
1909
	else
1910
		isert_put_response(isert_conn->conn, isert_cmd->iscsi_cmd);
1911 1912
}

1913
static void
1914
isert_rdma_read_done(struct ib_cq *cq, struct ib_wc *wc)
1915
{
1916 1917 1918 1919
	struct isert_conn *isert_conn = wc->qp->qp_context;
	struct isert_device *device = isert_conn->device;
	struct iser_tx_desc *desc = cqe_to_tx_desc(wc->wr_cqe);
	struct isert_cmd *isert_cmd = desc->isert_cmd;
1920
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1921
	struct se_cmd *se_cmd = &cmd->se_cmd;
1922
	int ret = 0;
1923

1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		isert_print_wc(wc, "rdma read");
		if (wc->status != IB_WC_WR_FLUSH_ERR)
			iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
		isert_completion_put(desc, isert_cmd, device->ib_device, true);
		return;
	}

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

1934
	if (isert_cmd->fr_desc && isert_cmd->fr_desc->ind & ISERT_PROTECTED) {
1935
		ret = isert_check_pi_status(se_cmd,
1936 1937
					    isert_cmd->fr_desc->pi_ctx->sig_mr);
		isert_cmd->fr_desc->ind &= ~ISERT_PROTECTED;
1938 1939
	}

1940
	iscsit_stop_dataout_timer(cmd);
1941
	device->unreg_rdma_mem(isert_cmd, isert_conn);
1942 1943
	cmd->write_data_done = isert_cmd->data.len;
	isert_cmd->rdma_wr_num = 0;
1944

1945
	isert_dbg("Cmd: %p RDMA_READ comp calling execute_cmd\n", isert_cmd);
1946 1947 1948 1949 1950
	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);

1951
	if (ret) {
1952
		target_put_sess_cmd(se_cmd);
1953 1954
		transport_send_check_condition_and_sense(se_cmd,
							 se_cmd->pi_err, 0);
1955
	} else {
1956
		target_execute_cmd(se_cmd);
1957
	}
1958 1959 1960 1961 1962 1963 1964 1965
}

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;
1966
	struct ib_device *ib_dev = isert_conn->cm_id->device;
1967
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
1968

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

1971 1972 1973
	switch (cmd->i_state) {
	case ISTATE_SEND_TASKMGTRSP:
		iscsit_tmr_post_handler(cmd, cmd->conn);
1974 1975
	case ISTATE_SEND_REJECT:   /* FALLTHRU */
	case ISTATE_SEND_TEXTRSP:  /* FALLTHRU */
1976
		cmd->i_state = ISTATE_SENT_STATUS;
1977 1978
		isert_completion_put(&isert_cmd->tx_desc, isert_cmd,
				     ib_dev, false);
1979
		break;
1980 1981 1982 1983
	case ISTATE_SEND_LOGOUTRSP:
		iscsit_logout_post_handler(cmd, cmd->conn);
		break;
	default:
1984
		isert_err("Unknown i_state %d\n", cmd->i_state);
1985 1986 1987 1988 1989 1990
		dump_stack();
		break;
	}
}

static void
1991
isert_login_send_done(struct ib_cq *cq, struct ib_wc *wc)
1992
{
1993 1994 1995
	struct isert_conn *isert_conn = wc->qp->qp_context;
	struct ib_device *ib_dev = isert_conn->cm_id->device;
	struct iser_tx_desc *tx_desc = cqe_to_tx_desc(wc->wr_cqe);
1996

1997 1998 1999 2000
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		isert_print_wc(wc, "login send");
		if (wc->status != IB_WC_WR_FLUSH_ERR)
			iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
2001
	}
2002

2003
	isert_unmap_tx_desc(tx_desc, ib_dev);
2004 2005 2006
}

static void
2007
isert_send_done(struct ib_cq *cq, struct ib_wc *wc)
2008
{
2009
	struct isert_conn *isert_conn = wc->qp->qp_context;
2010
	struct ib_device *ib_dev = isert_conn->cm_id->device;
2011
	struct iser_tx_desc *tx_desc = cqe_to_tx_desc(wc->wr_cqe);
2012 2013
	struct isert_cmd *isert_cmd = tx_desc->isert_cmd;

2014 2015 2016 2017 2018
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		isert_print_wc(wc, "send");
		if (wc->status != IB_WC_WR_FLUSH_ERR)
			iscsit_cause_connection_reinstatement(isert_conn->conn, 0);
		isert_completion_put(tx_desc, isert_cmd, ib_dev, true);
2019 2020 2021
		return;
	}

2022
	isert_dbg("Cmd %p\n", isert_cmd);
2023

2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
	switch (isert_cmd->iscsi_cmd->i_state) {
	case ISTATE_SEND_TASKMGTRSP:
	case ISTATE_SEND_LOGOUTRSP:
	case ISTATE_SEND_REJECT:
	case ISTATE_SEND_TEXTRSP:
		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;
2034
	default:
2035 2036
		isert_cmd->iscsi_cmd->i_state = ISTATE_SENT_STATUS;
		isert_completion_put(tx_desc, isert_cmd, ib_dev, false);
2037 2038 2039 2040 2041 2042 2043 2044 2045 2046
		break;
	}
}

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

2047 2048 2049 2050 2051 2052
	ret = isert_post_recv(isert_conn, isert_cmd->rx_desc);
	if (ret) {
		isert_err("ib_post_recv failed with %d\n", ret);
		return ret;
	}

2053
	ret = ib_post_send(isert_conn->qp, &isert_cmd->tx_desc.send_wr,
2054 2055
			   &wr_failed);
	if (ret) {
2056
		isert_err("ib_post_send failed with %d\n", ret);
2057 2058 2059 2060 2061 2062 2063 2064
		return ret;
	}
	return ret;
}

static int
isert_put_response(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
{
2065
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2066
	struct isert_conn *isert_conn = conn->context;
2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079
	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))) {
2080
		struct isert_device *device = isert_conn->device;
2081
		struct ib_device *ib_dev = device->ib_device;
2082
		struct ib_sge *tx_dsg = &isert_cmd->tx_desc.tx_sg[1];
2083
		u32 padding, pdu_len;
2084 2085 2086 2087 2088 2089 2090

		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);
2091
		pdu_len = cmd->se_cmd.scsi_sense_length + padding;
2092

2093 2094
		isert_cmd->pdu_buf_dma = ib_dma_map_single(ib_dev,
				(void *)cmd->sense_buffer, pdu_len,
2095 2096
				DMA_TO_DEVICE);

2097 2098 2099
		isert_cmd->pdu_buf_len = pdu_len;
		tx_dsg->addr	= isert_cmd->pdu_buf_dma;
		tx_dsg->length	= pdu_len;
2100
		tx_dsg->lkey	= device->pd->local_dma_lkey;
2101 2102 2103
		isert_cmd->tx_desc.num_sge = 2;
	}

2104
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2105

2106
	isert_dbg("Posting SCSI Response\n");
2107 2108 2109 2110

	return isert_post_response(isert_conn, isert_cmd);
}

2111 2112 2113 2114
static void
isert_aborted_task(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
{
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2115
	struct isert_conn *isert_conn = conn->context;
2116
	struct isert_device *device = isert_conn->device;
2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128

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

2129 2130 2131
static enum target_prot_op
isert_get_sup_prot_ops(struct iscsi_conn *conn)
{
2132
	struct isert_conn *isert_conn = conn->context;
2133
	struct isert_device *device = isert_conn->device;
2134

2135 2136
	if (conn->tpg->tpg_attrib.t10_pi) {
		if (device->pi_capable) {
2137
			isert_info("conn %p PI offload enabled\n", isert_conn);
2138 2139 2140 2141 2142
			isert_conn->pi_support = true;
			return TARGET_PROT_ALL;
		}
	}

2143
	isert_info("conn %p PI offload disabled\n", isert_conn);
2144
	isert_conn->pi_support = false;
2145 2146 2147 2148

	return TARGET_PROT_NORMAL;
}

2149 2150 2151 2152
static int
isert_put_nopin(struct iscsi_cmd *cmd, struct iscsi_conn *conn,
		bool nopout_response)
{
2153
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2154
	struct isert_conn *isert_conn = conn->context;
2155 2156 2157 2158 2159 2160 2161
	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);
2162
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2163

2164
	isert_dbg("conn %p Posting NOPIN Response\n", isert_conn);
2165 2166 2167 2168 2169 2170 2171

	return isert_post_response(isert_conn, isert_cmd);
}

static int
isert_put_logout_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2172
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2173
	struct isert_conn *isert_conn = conn->context;
2174 2175 2176 2177 2178 2179
	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);
2180
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2181

2182
	isert_dbg("conn %p Posting Logout Response\n", isert_conn);
2183 2184 2185 2186 2187 2188 2189

	return isert_post_response(isert_conn, isert_cmd);
}

static int
isert_put_tm_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2190
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2191
	struct isert_conn *isert_conn = conn->context;
2192 2193 2194 2195 2196 2197
	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);
2198
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2199

2200
	isert_dbg("conn %p Posting Task Management Response\n", isert_conn);
2201 2202 2203 2204 2205 2206 2207

	return isert_post_response(isert_conn, isert_cmd);
}

static int
isert_put_reject(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2208
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2209
	struct isert_conn *isert_conn = conn->context;
2210
	struct ib_send_wr *send_wr = &isert_cmd->tx_desc.send_wr;
2211
	struct isert_device *device = isert_conn->device;
2212
	struct ib_device *ib_dev = device->ib_device;
2213 2214 2215
	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;
2216 2217

	isert_create_send_desc(isert_conn, isert_cmd, &isert_cmd->tx_desc);
2218
	iscsit_build_reject(cmd, conn, hdr);
2219
	isert_init_tx_hdrs(isert_conn, &isert_cmd->tx_desc);
2220 2221

	hton24(hdr->dlength, ISCSI_HDR_LEN);
2222
	isert_cmd->pdu_buf_dma = ib_dma_map_single(ib_dev,
2223 2224
			(void *)cmd->buf_ptr, ISCSI_HDR_LEN,
			DMA_TO_DEVICE);
2225 2226
	isert_cmd->pdu_buf_len = ISCSI_HDR_LEN;
	tx_dsg->addr	= isert_cmd->pdu_buf_dma;
2227
	tx_dsg->length	= ISCSI_HDR_LEN;
2228
	tx_dsg->lkey	= device->pd->local_dma_lkey;
2229 2230
	isert_cmd->tx_desc.num_sge = 2;

2231
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2232

2233
	isert_dbg("conn %p Posting Reject\n", isert_conn);
2234 2235 2236 2237

	return isert_post_response(isert_conn, isert_cmd);
}

2238 2239 2240
static int
isert_put_text_rsp(struct iscsi_cmd *cmd, struct iscsi_conn *conn)
{
2241
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2242
	struct isert_conn *isert_conn = conn->context;
2243 2244 2245 2246 2247 2248 2249
	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);
2250
	rc = iscsit_build_text_rsp(cmd, conn, hdr, ISCSI_INFINIBAND);
2251 2252 2253 2254 2255 2256 2257
	if (rc < 0)
		return rc;

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

	if (txt_rsp_len) {
2258
		struct isert_device *device = isert_conn->device;
2259
		struct ib_device *ib_dev = device->ib_device;
2260 2261 2262 2263 2264 2265 2266 2267 2268
		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;
2269
		tx_dsg->lkey	= device->pd->local_dma_lkey;
2270 2271
		isert_cmd->tx_desc.num_sge = 2;
	}
2272
	isert_init_send_wr(isert_conn, isert_cmd, send_wr);
2273

2274
	isert_dbg("conn %p Text Response\n", isert_conn);
2275 2276 2277 2278

	return isert_post_response(isert_conn, isert_cmd);
}

2279 2280
static int
isert_build_rdma_wr(struct isert_conn *isert_conn, struct isert_cmd *isert_cmd,
C
Christoph Hellwig 已提交
2281
		    struct ib_sge *ib_sge, struct ib_rdma_wr *rdma_wr,
2282 2283
		    u32 data_left, u32 offset)
{
2284
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
2285
	struct scatterlist *sg_start, *tmp_sg;
2286
	struct isert_device *device = isert_conn->device;
2287
	struct ib_device *ib_dev = device->ib_device;
2288 2289 2290 2291 2292 2293 2294 2295
	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;

C
Christoph Hellwig 已提交
2296
	rdma_wr->wr.sg_list = ib_sge;
2297 2298
	rdma_wr->wr.wr_cqe = &isert_cmd->tx_desc.tx_cqe;

2299 2300 2301 2302
	/*
	 * Perform mapping of TCM scatterlist memory ib_sge dma_addr.
	 */
	for_each_sg(sg_start, tmp_sg, sg_nents, i) {
2303 2304 2305 2306
		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);
2307 2308 2309 2310

		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);
2311
		ib_sge->lkey = device->pd->local_dma_lkey;
2312

2313 2314
		isert_dbg("RDMA ib_sge: addr: 0x%llx  length: %u lkey: %x\n",
			  ib_sge->addr, ib_sge->length, ib_sge->lkey);
2315 2316
		page_off = 0;
		data_left -= ib_sge->length;
2317 2318
		if (!data_left)
			break;
2319
		ib_sge++;
2320
		isert_dbg("Incrementing ib_sge pointer to %p\n", ib_sge);
2321 2322
	}

C
Christoph Hellwig 已提交
2323
	rdma_wr->wr.num_sge = ++i;
2324
	isert_dbg("Set outgoing sg_list: %p num_sg: %u from TCM SGLs\n",
C
Christoph Hellwig 已提交
2325
		  rdma_wr->wr.sg_list, rdma_wr->wr.num_sge);
2326

C
Christoph Hellwig 已提交
2327
	return rdma_wr->wr.num_sge;
2328 2329 2330
}

static int
2331
isert_map_rdma(struct isert_cmd *isert_cmd, struct iscsi_conn *conn)
2332
{
2333
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
2334
	struct se_cmd *se_cmd = &cmd->se_cmd;
2335
	struct isert_conn *isert_conn = conn->context;
2336
	struct isert_data_buf *data = &isert_cmd->data;
C
Christoph Hellwig 已提交
2337
	struct ib_rdma_wr *rdma_wr;
2338
	struct ib_sge *ib_sge;
2339 2340
	u32 offset, data_len, data_left, rdma_write_max, va_offset = 0;
	int ret = 0, i, ib_sge_cnt;
2341

2342
	isert_cmd->tx_desc.isert_cmd = isert_cmd;
2343

2344 2345
	offset = isert_cmd->iser_ib_op == ISER_IB_RDMA_READ ?
			cmd->write_data_done : 0;
2346 2347
	ret = isert_map_data_buf(isert_conn, isert_cmd, se_cmd->t_data_sg,
				 se_cmd->t_data_nents, se_cmd->data_length,
2348 2349
				 offset, isert_cmd->iser_ib_op,
				 &isert_cmd->data);
2350 2351
	if (ret)
		return ret;
2352

2353 2354
	data_left = data->len;
	offset = data->offset;
2355

2356
	ib_sge = kzalloc(sizeof(struct ib_sge) * data->nents, GFP_KERNEL);
2357
	if (!ib_sge) {
2358
		isert_warn("Unable to allocate ib_sge\n");
2359
		ret = -ENOMEM;
2360
		goto unmap_cmd;
2361
	}
2362
	isert_cmd->ib_sge = ib_sge;
2363

2364 2365 2366 2367 2368
	isert_cmd->rdma_wr_num = DIV_ROUND_UP(data->nents, isert_conn->max_sge);
	isert_cmd->rdma_wr = kzalloc(sizeof(struct ib_rdma_wr) *
			isert_cmd->rdma_wr_num, GFP_KERNEL);
	if (!isert_cmd->rdma_wr) {
		isert_dbg("Unable to allocate isert_cmd->rdma_wr\n");
2369
		ret = -ENOMEM;
2370
		goto unmap_cmd;
2371 2372 2373 2374
	}

	rdma_write_max = isert_conn->max_sge * PAGE_SIZE;

2375 2376
	for (i = 0; i < isert_cmd->rdma_wr_num; i++) {
		rdma_wr = &isert_cmd->rdma_wr[i];
2377 2378
		data_len = min(data_left, rdma_write_max);

C
Christoph Hellwig 已提交
2379
		rdma_wr->wr.send_flags = 0;
2380
		if (isert_cmd->iser_ib_op == ISER_IB_RDMA_WRITE) {
2381 2382
			isert_cmd->tx_desc.tx_cqe.done = isert_rdma_write_done;

C
Christoph Hellwig 已提交
2383 2384 2385
			rdma_wr->wr.opcode = IB_WR_RDMA_WRITE;
			rdma_wr->remote_addr = isert_cmd->read_va + offset;
			rdma_wr->rkey = isert_cmd->read_stag;
2386
			if (i + 1 == isert_cmd->rdma_wr_num)
C
Christoph Hellwig 已提交
2387
				rdma_wr->wr.next = &isert_cmd->tx_desc.send_wr;
2388
			else
2389
				rdma_wr->wr.next = &isert_cmd->rdma_wr[i + 1].wr;
2390
		} else {
2391 2392
			isert_cmd->tx_desc.tx_cqe.done = isert_rdma_read_done;

C
Christoph Hellwig 已提交
2393 2394 2395
			rdma_wr->wr.opcode = IB_WR_RDMA_READ;
			rdma_wr->remote_addr = isert_cmd->write_va + va_offset;
			rdma_wr->rkey = isert_cmd->write_stag;
2396
			if (i + 1 == isert_cmd->rdma_wr_num)
C
Christoph Hellwig 已提交
2397
				rdma_wr->wr.send_flags = IB_SEND_SIGNALED;
2398
			else
2399
				rdma_wr->wr.next = &isert_cmd->rdma_wr[i + 1].wr;
2400
		}
2401 2402

		ib_sge_cnt = isert_build_rdma_wr(isert_conn, isert_cmd, ib_sge,
C
Christoph Hellwig 已提交
2403
					rdma_wr, data_len, offset);
2404 2405 2406
		ib_sge += ib_sge_cnt;

		offset += data_len;
2407
		va_offset += data_len;
2408 2409
		data_left -= data_len;
	}
2410 2411

	return 0;
2412 2413 2414
unmap_cmd:
	isert_unmap_data_buf(isert_conn, data);

2415 2416 2417
	return ret;
}

2418 2419 2420 2421 2422 2423
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));
2424
	inv_wr->wr_cqe = NULL;
2425 2426 2427 2428 2429 2430 2431 2432
	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);
}

2433
static int
2434 2435 2436
isert_fast_reg_mr(struct isert_conn *isert_conn,
		  struct fast_reg_descriptor *fr_desc,
		  struct isert_data_buf *mem,
2437
		  enum isert_indicator ind,
2438
		  struct ib_sge *sge)
2439
{
2440
	struct isert_device *device = isert_conn->device;
2441
	struct ib_device *ib_dev = device->ib_device;
2442
	struct ib_mr *mr;
2443
	struct ib_reg_wr reg_wr;
C
Christoph Hellwig 已提交
2444
	struct ib_send_wr inv_wr, *bad_wr, *wr = NULL;
2445
	int ret, n;
2446

2447
	if (mem->dma_nents == 1) {
2448
		sge->lkey = device->pd->local_dma_lkey;
2449 2450
		sge->addr = ib_sg_dma_address(ib_dev, &mem->sg[0]);
		sge->length = ib_sg_dma_len(ib_dev, &mem->sg[0]);
2451 2452
		isert_dbg("sge: addr: 0x%llx  length: %u lkey: %x\n",
			 sge->addr, sge->length, sge->lkey);
2453 2454 2455
		return 0;
	}

2456
	if (ind == ISERT_DATA_KEY_VALID)
2457 2458
		/* Registering data buffer */
		mr = fr_desc->data_mr;
2459
	else
2460 2461
		/* Registering protection buffer */
		mr = fr_desc->pi_ctx->prot_mr;
2462

2463 2464
	if (!(fr_desc->ind & ind)) {
		isert_inv_rkey(&inv_wr, mr);
2465 2466 2467
		wr = &inv_wr;
	}

2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
	n = ib_map_mr_sg(mr, mem->sg, mem->nents, PAGE_SIZE);
	if (unlikely(n != mem->nents)) {
		isert_err("failed to map mr sg (%d/%d)\n",
			 n, mem->nents);
		return n < 0 ? n : -EINVAL;
	}

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

	reg_wr.wr.next = NULL;
	reg_wr.wr.opcode = IB_WR_REG_MR;
2480
	reg_wr.wr.wr_cqe = NULL;
2481 2482 2483 2484 2485
	reg_wr.wr.send_flags = 0;
	reg_wr.wr.num_sge = 0;
	reg_wr.mr = mr;
	reg_wr.key = mr->lkey;
	reg_wr.access = IB_ACCESS_LOCAL_WRITE;
2486 2487

	if (!wr)
2488
		wr = &reg_wr.wr;
2489
	else
2490
		wr->next = &reg_wr.wr;
2491

2492
	ret = ib_post_send(isert_conn->qp, wr, &bad_wr);
2493
	if (ret) {
2494
		isert_err("fast registration failed, ret:%d\n", ret);
2495 2496
		return ret;
	}
2497
	fr_desc->ind &= ~ind;
2498

2499
	sge->lkey = mr->lkey;
2500 2501
	sge->addr = mr->iova;
	sge->length = mr->length;
2502

2503 2504
	isert_dbg("sge: addr: 0x%llx  length: %u lkey: %x\n",
		  sge->addr, sge->length, sge->lkey);
2505 2506 2507 2508

	return ret;
}

2509 2510 2511 2512
static inline void
isert_set_dif_domain(struct se_cmd *se_cmd, struct ib_sig_attrs *sig_attrs,
		     struct ib_sig_domain *domain)
{
2513
	domain->sig_type = IB_SIG_TYPE_T10_DIF;
2514 2515 2516
	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;
2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
	/*
	 * 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;
2528 2529
};

2530 2531 2532 2533 2534 2535
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:
2536
		sig_attrs->mem.sig_type = IB_SIG_TYPE_NONE;
2537
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->wire);
2538 2539 2540
		break;
	case TARGET_PROT_DOUT_INSERT:
	case TARGET_PROT_DIN_STRIP:
2541
		sig_attrs->wire.sig_type = IB_SIG_TYPE_NONE;
2542
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->mem);
2543 2544 2545
		break;
	case TARGET_PROT_DIN_PASS:
	case TARGET_PROT_DOUT_PASS:
2546 2547
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->wire);
		isert_set_dif_domain(se_cmd, sig_attrs, &sig_attrs->mem);
2548 2549
		break;
	default:
2550
		isert_err("Unsupported PI operation %d\n", se_cmd->prot_op);
2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565
		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
2566
isert_reg_sig_mr(struct isert_conn *isert_conn,
2567
		 struct isert_cmd *isert_cmd,
2568
		 struct fast_reg_descriptor *fr_desc)
2569
{
2570
	struct se_cmd *se_cmd = &isert_cmd->iscsi_cmd->se_cmd;
C
Christoph Hellwig 已提交
2571 2572
	struct ib_sig_handover_wr sig_wr;
	struct ib_send_wr inv_wr, *bad_wr, *wr = NULL;
2573 2574 2575 2576 2577 2578 2579 2580
	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;
2581

2582 2583 2584
	sig_attrs.check_mask = isert_set_prot_checks(se_cmd->prot_checks);

	if (!(fr_desc->ind & ISERT_SIG_KEY_VALID)) {
2585
		isert_inv_rkey(&inv_wr, pi_ctx->sig_mr);
2586 2587 2588 2589
		wr = &inv_wr;
	}

	memset(&sig_wr, 0, sizeof(sig_wr));
C
Christoph Hellwig 已提交
2590
	sig_wr.wr.opcode = IB_WR_REG_SIG_MR;
2591
	sig_wr.wr.wr_cqe = NULL;
2592
	sig_wr.wr.sg_list = &isert_cmd->ib_sg[DATA];
C
Christoph Hellwig 已提交
2593 2594 2595 2596
	sig_wr.wr.num_sge = 1;
	sig_wr.access_flags = IB_ACCESS_LOCAL_WRITE;
	sig_wr.sig_attrs = &sig_attrs;
	sig_wr.sig_mr = pi_ctx->sig_mr;
2597
	if (se_cmd->t_prot_sg)
2598
		sig_wr.prot = &isert_cmd->ib_sg[PROT];
2599 2600

	if (!wr)
C
Christoph Hellwig 已提交
2601
		wr = &sig_wr.wr;
2602
	else
C
Christoph Hellwig 已提交
2603
		wr->next = &sig_wr.wr;
2604

2605
	ret = ib_post_send(isert_conn->qp, wr, &bad_wr);
2606
	if (ret) {
2607
		isert_err("fast registration failed, ret:%d\n", ret);
2608 2609 2610 2611
		goto err;
	}
	fr_desc->ind &= ~ISERT_SIG_KEY_VALID;

2612 2613 2614
	isert_cmd->ib_sg[SIG].lkey = pi_ctx->sig_mr->lkey;
	isert_cmd->ib_sg[SIG].addr = 0;
	isert_cmd->ib_sg[SIG].length = se_cmd->data_length;
2615 2616 2617 2618 2619 2620
	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
		 */
2621
		isert_cmd->ib_sg[SIG].length += se_cmd->prot_length;
2622

2623
	isert_dbg("sig_sge: addr: 0x%llx  length: %u lkey: %x\n",
2624 2625
		  isert_cmd->ib_sg[SIG].addr, isert_cmd->ib_sg[SIG].length,
		  isert_cmd->ib_sg[SIG].lkey);
2626
err:
2627 2628 2629
	return ret;
}

2630 2631
static int
isert_handle_prot_cmd(struct isert_conn *isert_conn,
2632
		      struct isert_cmd *isert_cmd)
2633
{
2634
	struct isert_device *device = isert_conn->device;
2635 2636 2637
	struct se_cmd *se_cmd = &isert_cmd->iscsi_cmd->se_cmd;
	int ret;

2638 2639
	if (!isert_cmd->fr_desc->pi_ctx) {
		ret = isert_create_pi_ctx(isert_cmd->fr_desc,
2640
					  device->ib_device,
2641
					  device->pd);
2642
		if (ret) {
2643
			isert_err("conn %p failed to allocate pi_ctx\n",
2644 2645 2646 2647 2648 2649 2650 2651 2652 2653
				  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,
2654 2655 2656
					 0,
					 isert_cmd->iser_ib_op,
					 &isert_cmd->prot);
2657
		if (ret) {
2658
			isert_err("conn %p failed to map protection buffer\n",
2659 2660 2661 2662
				  isert_conn);
			return ret;
		}

2663 2664 2665 2666 2667
		memset(&isert_cmd->ib_sg[PROT], 0, sizeof(isert_cmd->ib_sg[PROT]));
		ret = isert_fast_reg_mr(isert_conn, isert_cmd->fr_desc,
					&isert_cmd->prot,
					ISERT_PROT_KEY_VALID,
					&isert_cmd->ib_sg[PROT]);
2668
		if (ret) {
2669
			isert_err("conn %p failed to fast reg mr\n",
2670 2671 2672 2673 2674
				  isert_conn);
			goto unmap_prot_cmd;
		}
	}

2675
	ret = isert_reg_sig_mr(isert_conn, isert_cmd, isert_cmd->fr_desc);
2676
	if (ret) {
2677
		isert_err("conn %p failed to fast reg mr\n",
2678 2679 2680
			  isert_conn);
		goto unmap_prot_cmd;
	}
2681
	isert_cmd->fr_desc->ind |= ISERT_PROTECTED;
2682 2683 2684 2685 2686

	return 0;

unmap_prot_cmd:
	if (se_cmd->t_prot_sg)
2687
		isert_unmap_data_buf(isert_conn, &isert_cmd->prot);
2688 2689 2690 2691

	return ret;
}

2692
static int
2693
isert_reg_rdma(struct isert_cmd *isert_cmd, struct iscsi_conn *conn)
2694
{
2695
	struct iscsi_cmd *cmd = isert_cmd->iscsi_cmd;
2696
	struct se_cmd *se_cmd = &cmd->se_cmd;
2697 2698
	struct isert_conn *isert_conn = conn->context;
	struct fast_reg_descriptor *fr_desc = NULL;
C
Christoph Hellwig 已提交
2699
	struct ib_rdma_wr *rdma_wr;
2700
	struct ib_sge *ib_sg;
2701 2702
	u32 offset;
	int ret = 0;
2703 2704
	unsigned long flags;

2705
	isert_cmd->tx_desc.isert_cmd = isert_cmd;
2706

2707 2708
	offset = isert_cmd->iser_ib_op == ISER_IB_RDMA_READ ?
			cmd->write_data_done : 0;
2709 2710
	ret = isert_map_data_buf(isert_conn, isert_cmd, se_cmd->t_data_sg,
				 se_cmd->t_data_nents, se_cmd->data_length,
2711 2712
				 offset, isert_cmd->iser_ib_op,
				 &isert_cmd->data);
2713 2714
	if (ret)
		return ret;
2715

2716 2717
	if (isert_cmd->data.dma_nents != 1 ||
	    isert_prot_cmd(isert_conn, se_cmd)) {
2718 2719
		spin_lock_irqsave(&isert_conn->pool_lock, flags);
		fr_desc = list_first_entry(&isert_conn->fr_pool,
2720 2721
					   struct fast_reg_descriptor, list);
		list_del(&fr_desc->list);
2722
		spin_unlock_irqrestore(&isert_conn->pool_lock, flags);
2723
		isert_cmd->fr_desc = fr_desc;
2724 2725
	}

2726 2727
	ret = isert_fast_reg_mr(isert_conn, fr_desc, &isert_cmd->data,
				ISERT_DATA_KEY_VALID, &isert_cmd->ib_sg[DATA]);
2728 2729
	if (ret)
		goto unmap_cmd;
2730

2731
	if (isert_prot_cmd(isert_conn, se_cmd)) {
2732
		ret = isert_handle_prot_cmd(isert_conn, isert_cmd);
2733
		if (ret)
2734
			goto unmap_cmd;
2735

2736
		ib_sg = &isert_cmd->ib_sg[SIG];
2737
	} else {
2738
		ib_sg = &isert_cmd->ib_sg[DATA];
2739
	}
2740

2741 2742 2743 2744 2745
	memcpy(&isert_cmd->s_ib_sge, ib_sg, sizeof(*ib_sg));
	isert_cmd->ib_sge = &isert_cmd->s_ib_sge;
	isert_cmd->rdma_wr_num = 1;
	memset(&isert_cmd->s_rdma_wr, 0, sizeof(isert_cmd->s_rdma_wr));
	isert_cmd->rdma_wr = &isert_cmd->s_rdma_wr;
2746

2747 2748
	rdma_wr = &isert_cmd->s_rdma_wr;
	rdma_wr->wr.sg_list = &isert_cmd->s_ib_sge;
C
Christoph Hellwig 已提交
2749
	rdma_wr->wr.num_sge = 1;
2750
	rdma_wr->wr.wr_cqe = &isert_cmd->tx_desc.tx_cqe;
2751
	if (isert_cmd->iser_ib_op == ISER_IB_RDMA_WRITE) {
2752 2753
		isert_cmd->tx_desc.tx_cqe.done = isert_rdma_write_done;

C
Christoph Hellwig 已提交
2754 2755 2756 2757
		rdma_wr->wr.opcode = IB_WR_RDMA_WRITE;
		rdma_wr->remote_addr = isert_cmd->read_va;
		rdma_wr->rkey = isert_cmd->read_stag;
		rdma_wr->wr.send_flags = !isert_prot_cmd(isert_conn, se_cmd) ?
2758
				      0 : IB_SEND_SIGNALED;
2759
	} else {
2760 2761
		isert_cmd->tx_desc.tx_cqe.done = isert_rdma_read_done;

C
Christoph Hellwig 已提交
2762 2763 2764 2765
		rdma_wr->wr.opcode = IB_WR_RDMA_READ;
		rdma_wr->remote_addr = isert_cmd->write_va;
		rdma_wr->rkey = isert_cmd->write_stag;
		rdma_wr->wr.send_flags = IB_SEND_SIGNALED;
2766 2767
	}

2768
	return 0;
2769

2770 2771
unmap_cmd:
	if (fr_desc) {
2772 2773 2774
		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);
2775
	}
2776
	isert_unmap_data_buf(isert_conn, &isert_cmd->data);
2777 2778 2779 2780

	return ret;
}

2781 2782 2783 2784
static int
isert_put_datain(struct iscsi_conn *conn, struct iscsi_cmd *cmd)
{
	struct se_cmd *se_cmd = &cmd->se_cmd;
2785
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2786
	struct isert_conn *isert_conn = conn->context;
2787
	struct isert_device *device = isert_conn->device;
2788 2789 2790
	struct ib_send_wr *wr_failed;
	int rc;

2791
	isert_dbg("Cmd: %p RDMA_WRITE data_length: %u\n",
2792
		 isert_cmd, se_cmd->data_length);
2793

2794 2795
	isert_cmd->iser_ib_op = ISER_IB_RDMA_WRITE;
	rc = device->reg_rdma_mem(isert_cmd, conn);
2796
	if (rc) {
2797
		isert_err("Cmd: %p failed to prepare RDMA res\n", isert_cmd);
2798 2799 2800
		return rc;
	}

2801
	if (!isert_prot_cmd(isert_conn, se_cmd)) {
2802 2803 2804 2805 2806 2807 2808 2809 2810
		/*
		 * 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,
2811
				   &isert_cmd->tx_desc.send_wr);
2812 2813
		isert_cmd->s_rdma_wr.wr.next = &isert_cmd->tx_desc.send_wr;
		isert_cmd->rdma_wr_num += 1;
2814 2815 2816 2817 2818 2819

		rc = isert_post_recv(isert_conn, isert_cmd->rx_desc);
		if (rc) {
			isert_err("ib_post_recv failed with %d\n", rc);
			return rc;
		}
2820
	}
2821

2822
	rc = ib_post_send(isert_conn->qp, &isert_cmd->rdma_wr->wr, &wr_failed);
2823
	if (rc)
2824
		isert_warn("ib_post_send() failed for IB_WR_RDMA_WRITE\n");
2825

2826
	if (!isert_prot_cmd(isert_conn, se_cmd))
2827
		isert_dbg("Cmd: %p posted RDMA_WRITE + Response for iSER Data "
2828 2829
			 "READ\n", isert_cmd);
	else
2830
		isert_dbg("Cmd: %p posted RDMA_WRITE for iSER Data READ\n",
2831
			 isert_cmd);
2832

2833
	return 1;
2834 2835 2836 2837 2838 2839
}

static int
isert_get_dataout(struct iscsi_conn *conn, struct iscsi_cmd *cmd, bool recovery)
{
	struct se_cmd *se_cmd = &cmd->se_cmd;
2840
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
2841
	struct isert_conn *isert_conn = conn->context;
2842
	struct isert_device *device = isert_conn->device;
2843 2844
	struct ib_send_wr *wr_failed;
	int rc;
2845

2846
	isert_dbg("Cmd: %p RDMA_READ data_length: %u write_data_done: %u\n",
2847
		 isert_cmd, se_cmd->data_length, cmd->write_data_done);
2848 2849
	isert_cmd->iser_ib_op = ISER_IB_RDMA_READ;
	rc = device->reg_rdma_mem(isert_cmd, conn);
2850
	if (rc) {
2851
		isert_err("Cmd: %p failed to prepare RDMA res\n", isert_cmd);
2852
		return rc;
2853 2854
	}

2855
	rc = ib_post_send(isert_conn->qp, &isert_cmd->rdma_wr->wr, &wr_failed);
2856
	if (rc)
2857
		isert_warn("ib_post_send() failed for IB_WR_RDMA_READ\n");
2858

2859
	isert_dbg("Cmd: %p posted RDMA_READ memory for ISER Data WRITE\n",
2860
		 isert_cmd);
2861

2862
	return 0;
2863 2864 2865 2866 2867
}

static int
isert_immediate_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
{
2868 2869
	struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);
	int ret = 0;
2870 2871

	switch (state) {
2872 2873 2874 2875 2876 2877
	case ISTATE_REMOVE:
		spin_lock_bh(&conn->cmd_lock);
		list_del_init(&cmd->i_conn_node);
		spin_unlock_bh(&conn->cmd_lock);
		isert_put_cmd(isert_cmd, true);
		break;
2878 2879 2880 2881
	case ISTATE_SEND_NOPIN_WANT_RESPONSE:
		ret = isert_put_nopin(cmd, conn, false);
		break;
	default:
2882
		isert_err("Unknown immediate state: 0x%02x\n", state);
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892
		ret = -EINVAL;
		break;
	}

	return ret;
}

static int
isert_response_queue(struct iscsi_conn *conn, struct iscsi_cmd *cmd, int state)
{
S
Sagi Grimberg 已提交
2893
	struct isert_conn *isert_conn = conn->context;
2894 2895 2896 2897 2898
	int ret;

	switch (state) {
	case ISTATE_SEND_LOGOUTRSP:
		ret = isert_put_logout_rsp(cmd, conn);
S
Sagi Grimberg 已提交
2899 2900
		if (!ret)
			isert_conn->logout_posted = true;
2901 2902 2903 2904 2905 2906 2907 2908 2909 2910
		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;
2911 2912 2913
	case ISTATE_SEND_TEXTRSP:
		ret = isert_put_text_rsp(cmd, conn);
		break;
2914 2915 2916 2917 2918 2919 2920 2921
	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:
2922
		isert_err("Unknown response state: 0x%02x\n", state);
2923 2924 2925 2926 2927 2928 2929
		ret = -EINVAL;
		break;
	}

	return ret;
}

2930 2931 2932 2933 2934 2935 2936 2937 2938
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;
2939
	isert_dbg("ksockaddr: %p, sa: %p\n", &np->np_sockaddr, sa);
2940

2941
	id = rdma_create_id(&init_net, isert_cma_handler, isert_np,
2942 2943
			    RDMA_PS_TCP, IB_QPT_RC);
	if (IS_ERR(id)) {
2944
		isert_err("rdma_create_id() failed: %ld\n", PTR_ERR(id));
2945 2946 2947
		ret = PTR_ERR(id);
		goto out;
	}
2948
	isert_dbg("id %p context %p\n", id, id->context);
2949 2950 2951

	ret = rdma_bind_addr(id, sa);
	if (ret) {
2952
		isert_err("rdma_bind_addr() failed: %d\n", ret);
2953 2954 2955
		goto out_id;
	}

2956
	ret = rdma_listen(id, 0);
2957
	if (ret) {
2958
		isert_err("rdma_listen() failed: %d\n", ret);
2959 2960 2961 2962 2963 2964 2965 2966 2967 2968
		goto out_id;
	}

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

2969 2970
static int
isert_setup_np(struct iscsi_np *np,
2971
	       struct sockaddr_storage *ksockaddr)
2972 2973 2974 2975 2976 2977 2978
{
	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) {
2979
		isert_err("Unable to allocate struct isert_np\n");
2980 2981
		return -ENOMEM;
	}
2982 2983
	sema_init(&isert_np->sem, 0);
	mutex_init(&isert_np->mutex);
2984 2985
	INIT_LIST_HEAD(&isert_np->accepted);
	INIT_LIST_HEAD(&isert_np->pending);
2986
	isert_np->np = np;
2987 2988 2989 2990 2991 2992

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

2995
	isert_lid = isert_setup_id(isert_np);
2996 2997 2998 2999 3000
	if (IS_ERR(isert_lid)) {
		ret = PTR_ERR(isert_lid);
		goto out;
	}

3001
	isert_np->cm_id = isert_lid;
3002 3003 3004 3005 3006 3007
	np->np_context = isert_np;

	return 0;

out:
	kfree(isert_np);
3008

3009 3010 3011 3012 3013 3014
	return ret;
}

static int
isert_rdma_accept(struct isert_conn *isert_conn)
{
3015
	struct rdma_cm_id *cm_id = isert_conn->cm_id;
3016 3017
	struct rdma_conn_param cp;
	int ret;
3018
	struct iser_cm_hdr rsp_hdr;
3019 3020 3021 3022 3023 3024

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

3025
	memset(&rsp_hdr, 0, sizeof(rsp_hdr));
3026 3027 3028
	rsp_hdr.flags = ISERT_ZBVA_NOT_USED;
	if (!isert_conn->snd_w_inv)
		rsp_hdr.flags = rsp_hdr.flags | ISERT_SEND_W_INV_NOT_USED;
3029 3030 3031
	cp.private_data = (void *)&rsp_hdr;
	cp.private_data_len = sizeof(rsp_hdr);

3032 3033
	ret = rdma_accept(cm_id, &cp);
	if (ret) {
3034
		isert_err("rdma_accept() failed with: %d\n", ret);
3035 3036 3037 3038 3039 3040 3041 3042 3043
		return ret;
	}

	return 0;
}

static int
isert_get_login_rx(struct iscsi_conn *conn, struct iscsi_login *login)
{
3044
	struct isert_conn *isert_conn = conn->context;
3045 3046
	int ret;

3047
	isert_info("before login_req comp conn: %p\n", isert_conn);
3048 3049
	ret = wait_for_completion_interruptible(&isert_conn->login_req_comp);
	if (ret) {
3050
		isert_err("isert_conn %p interrupted before got login req\n",
3051 3052 3053 3054 3055
			  isert_conn);
		return ret;
	}
	reinit_completion(&isert_conn->login_req_comp);

3056 3057 3058 3059 3060 3061 3062 3063
	/*
	 * 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;
3064

3065 3066
	isert_rx_login_req(isert_conn);

3067 3068
	isert_info("before login_comp conn: %p\n", conn);
	ret = wait_for_completion_interruptible(&isert_conn->login_comp);
3069 3070 3071
	if (ret)
		return ret;

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

3074 3075 3076 3077 3078 3079 3080
	return 0;
}

static void
isert_set_conn_info(struct iscsi_np *np, struct iscsi_conn *conn,
		    struct isert_conn *isert_conn)
{
3081
	struct rdma_cm_id *cm_id = isert_conn->cm_id;
3082 3083 3084 3085
	struct rdma_route *cm_route = &cm_id->route;

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

3086 3087
	conn->login_sockaddr = cm_route->addr.dst_addr;
	conn->local_sockaddr = cm_route->addr.src_addr;
3088 3089 3090 3091 3092
}

static int
isert_accept_np(struct iscsi_np *np, struct iscsi_conn *conn)
{
3093
	struct isert_np *isert_np = np->np_context;
3094
	struct isert_conn *isert_conn;
3095
	int ret;
3096 3097

accept_wait:
3098
	ret = down_interruptible(&isert_np->sem);
3099
	if (ret)
3100 3101 3102
		return -ENODEV;

	spin_lock_bh(&np->np_thread_lock);
3103
	if (np->np_thread_state >= ISCSI_NP_THREAD_RESET) {
3104
		spin_unlock_bh(&np->np_thread_lock);
3105
		isert_dbg("np_thread_state %d\n",
3106 3107 3108 3109 3110
			 np->np_thread_state);
		/**
		 * No point in stalling here when np_thread
		 * is in state RESET/SHUTDOWN/EXIT - bail
		 **/
3111 3112 3113 3114
		return -ENODEV;
	}
	spin_unlock_bh(&np->np_thread_lock);

3115
	mutex_lock(&isert_np->mutex);
3116
	if (list_empty(&isert_np->pending)) {
3117
		mutex_unlock(&isert_np->mutex);
3118 3119
		goto accept_wait;
	}
3120 3121 3122
	isert_conn = list_first_entry(&isert_np->pending,
			struct isert_conn, node);
	list_del_init(&isert_conn->node);
3123
	mutex_unlock(&isert_np->mutex);
3124 3125 3126

	conn->context = isert_conn;
	isert_conn->conn = conn;
3127
	isert_conn->state = ISER_CONN_BOUND;
3128 3129 3130

	isert_set_conn_info(np, conn, isert_conn);

3131
	isert_dbg("Processing isert_conn: %p\n", isert_conn);
3132

3133 3134 3135 3136 3137 3138
	return 0;
}

static void
isert_free_np(struct iscsi_np *np)
{
3139
	struct isert_np *isert_np = np->np_context;
3140
	struct isert_conn *isert_conn, *n;
3141

3142 3143
	if (isert_np->cm_id)
		rdma_destroy_id(isert_np->cm_id);
3144

3145 3146 3147 3148 3149
	/*
	 * 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
3150
	 * up in accepted and pending lists.
3151
	 */
3152
	mutex_lock(&isert_np->mutex);
3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165
	if (!list_empty(&isert_np->pending)) {
		isert_info("Still have isert pending connections\n");
		list_for_each_entry_safe(isert_conn, n,
					 &isert_np->pending,
					 node) {
			isert_info("cleaning isert_conn %p state (%d)\n",
				   isert_conn, isert_conn->state);
			isert_connect_release(isert_conn);
		}
	}

	if (!list_empty(&isert_np->accepted)) {
		isert_info("Still have isert accepted connections\n");
3166
		list_for_each_entry_safe(isert_conn, n,
3167 3168
					 &isert_np->accepted,
					 node) {
3169
			isert_info("cleaning isert_conn %p state (%d)\n",
3170 3171 3172 3173
				   isert_conn, isert_conn->state);
			isert_connect_release(isert_conn);
		}
	}
3174
	mutex_unlock(&isert_np->mutex);
3175

3176 3177 3178 3179
	np->np_context = NULL;
	kfree(isert_np);
}

3180 3181 3182 3183 3184 3185
static void isert_release_work(struct work_struct *work)
{
	struct isert_conn *isert_conn = container_of(work,
						     struct isert_conn,
						     release_work);

3186
	isert_info("Starting release conn %p\n", isert_conn);
3187

3188
	mutex_lock(&isert_conn->mutex);
3189
	isert_conn->state = ISER_CONN_DOWN;
3190
	mutex_unlock(&isert_conn->mutex);
3191

3192
	isert_info("Destroying conn %p\n", isert_conn);
3193 3194 3195
	isert_put_conn(isert_conn);
}

S
Sagi Grimberg 已提交
3196 3197 3198 3199 3200
static void
isert_wait4logout(struct isert_conn *isert_conn)
{
	struct iscsi_conn *conn = isert_conn->conn;

3201 3202
	isert_info("conn %p\n", isert_conn);

S
Sagi Grimberg 已提交
3203
	if (isert_conn->logout_posted) {
3204
		isert_info("conn %p wait for conn_logout_comp\n", isert_conn);
S
Sagi Grimberg 已提交
3205 3206 3207 3208 3209
		wait_for_completion_timeout(&conn->conn_logout_comp,
					    SECONDS_FOR_LOGOUT_COMP * HZ);
	}
}

3210 3211 3212
static void
isert_wait4cmds(struct iscsi_conn *conn)
{
3213 3214
	isert_info("iscsi_conn %p\n", conn);

3215 3216 3217 3218 3219 3220
	if (conn->sess) {
		target_sess_cmd_list_set_waiting(conn->sess->se_sess);
		target_wait_for_sess_cmds(conn->sess->se_sess);
	}
}

3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231
static void
isert_beacon_done(struct ib_cq *cq, struct ib_wc *wc)
{
	struct isert_conn *isert_conn = wc->qp->qp_context;

	isert_print_wc(wc, "beacon");

	isert_info("conn %p completing wait_comp_err\n", isert_conn);
	complete(&isert_conn->wait_comp_err);
}

3232 3233 3234 3235
static void
isert_wait4flush(struct isert_conn *isert_conn)
{
	struct ib_recv_wr *bad_wr;
3236
	static struct ib_cqe cqe = { .done = isert_beacon_done };
3237

3238 3239
	isert_info("conn %p\n", isert_conn);

3240
	init_completion(&isert_conn->wait_comp_err);
3241
	isert_conn->beacon.wr_cqe = &cqe;
3242
	/* post an indication that all flush errors were consumed */
3243
	if (ib_post_recv(isert_conn->qp, &isert_conn->beacon, &bad_wr)) {
3244
		isert_err("conn %p failed to post beacon", isert_conn);
3245 3246 3247
		return;
	}

3248
	wait_for_completion(&isert_conn->wait_comp_err);
3249 3250
}

3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285
/**
 * isert_put_unsol_pending_cmds() - Drop commands waiting for
 *     unsolicitate dataout
 * @conn:    iscsi connection
 *
 * We might still have commands that are waiting for unsolicited
 * dataouts messages. We must put the extra reference on those
 * before blocking on the target_wait_for_session_cmds
 */
static void
isert_put_unsol_pending_cmds(struct iscsi_conn *conn)
{
	struct iscsi_cmd *cmd, *tmp;
	static LIST_HEAD(drop_cmd_list);

	spin_lock_bh(&conn->cmd_lock);
	list_for_each_entry_safe(cmd, tmp, &conn->conn_cmd_list, i_conn_node) {
		if ((cmd->cmd_flags & ICF_NON_IMMEDIATE_UNSOLICITED_DATA) &&
		    (cmd->write_data_done < conn->sess->sess_ops->FirstBurstLength) &&
		    (cmd->write_data_done < cmd->se_cmd.data_length))
			list_move_tail(&cmd->i_conn_node, &drop_cmd_list);
	}
	spin_unlock_bh(&conn->cmd_lock);

	list_for_each_entry_safe(cmd, tmp, &drop_cmd_list, i_conn_node) {
		list_del_init(&cmd->i_conn_node);
		if (cmd->i_state != ISTATE_REMOVE) {
			struct isert_cmd *isert_cmd = iscsit_priv_cmd(cmd);

			isert_info("conn %p dropping cmd %p\n", conn, cmd);
			isert_put_cmd(isert_cmd, true);
		}
	}
}

3286
static void isert_wait_conn(struct iscsi_conn *conn)
3287 3288 3289
{
	struct isert_conn *isert_conn = conn->context;

3290
	isert_info("Starting conn %p\n", isert_conn);
3291

3292
	mutex_lock(&isert_conn->mutex);
3293
	isert_conn_terminate(isert_conn);
3294
	mutex_unlock(&isert_conn->mutex);
3295

3296
	isert_wait4flush(isert_conn);
3297 3298
	isert_put_unsol_pending_cmds(conn);
	isert_wait4cmds(conn);
S
Sagi Grimberg 已提交
3299
	isert_wait4logout(isert_conn);
3300

3301
	queue_work(isert_release_wq, &isert_conn->release_work);
3302 3303 3304 3305 3306
}

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

3308
	isert_wait4flush(isert_conn);
3309 3310 3311 3312 3313 3314
	isert_put_conn(isert_conn);
}

static struct iscsit_transport iser_target_transport = {
	.name			= "IB/iSER",
	.transport_type		= ISCSI_INFINIBAND,
3315
	.priv_size		= sizeof(struct isert_cmd),
3316 3317 3318 3319
	.owner			= THIS_MODULE,
	.iscsit_setup_np	= isert_setup_np,
	.iscsit_accept_np	= isert_accept_np,
	.iscsit_free_np		= isert_free_np,
3320
	.iscsit_wait_conn	= isert_wait_conn,
3321 3322 3323 3324 3325 3326 3327 3328
	.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,
3329
	.iscsit_aborted_task	= isert_aborted_task,
3330
	.iscsit_get_sup_prot_ops = isert_get_sup_prot_ops,
3331 3332 3333 3334 3335 3336
};

static int __init isert_init(void)
{
	int ret;

3337 3338
	isert_comp_wq = alloc_workqueue("isert_comp_wq",
					WQ_UNBOUND | WQ_HIGHPRI, 0);
3339
	if (!isert_comp_wq) {
3340
		isert_err("Unable to allocate isert_comp_wq\n");
3341
		ret = -ENOMEM;
3342
		return -ENOMEM;
3343 3344
	}

3345 3346 3347
	isert_release_wq = alloc_workqueue("isert_release_wq", WQ_UNBOUND,
					WQ_UNBOUND_MAX_ACTIVE);
	if (!isert_release_wq) {
3348
		isert_err("Unable to allocate isert_release_wq\n");
3349 3350 3351 3352
		ret = -ENOMEM;
		goto destroy_comp_wq;
	}

3353
	iscsit_register_transport(&iser_target_transport);
3354
	isert_info("iSER_TARGET[0] - Loaded iser_target_transport\n");
3355

3356 3357
	return 0;

3358 3359
destroy_comp_wq:
	destroy_workqueue(isert_comp_wq);
3360

3361 3362 3363 3364 3365
	return ret;
}

static void __exit isert_exit(void)
{
3366
	flush_scheduled_work();
3367
	destroy_workqueue(isert_release_wq);
3368 3369
	destroy_workqueue(isert_comp_wq);
	iscsit_unregister_transport(&iser_target_transport);
3370
	isert_info("iSER_TARGET[0] - Released iser_target_transport\n");
3371 3372 3373
}

MODULE_DESCRIPTION("iSER-Target for mainline target infrastructure");
S
Sagi Grimberg 已提交
3374
MODULE_VERSION("1.0");
3375 3376 3377 3378 3379
MODULE_AUTHOR("nab@Linux-iSCSI.org");
MODULE_LICENSE("GPL");

module_init(isert_init);
module_exit(isert_exit);