ib_srp.c 99.9 KB
Newer Older
1 2 3 4 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 30 31 32
/*
 * Copyright (c) 2005 Cisco Systems.  All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - Redistributions in binary form must reproduce the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

33
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34

35 36 37 38 39 40 41
#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/err.h>
#include <linux/string.h>
#include <linux/parser.h>
#include <linux/random.h>
42
#include <linux/jiffies.h>
43
#include <linux/lockdep.h>
44
#include <rdma/ib_cache.h>
45

A
Arun Sharma 已提交
46
#include <linux/atomic.h>
47 48 49 50

#include <scsi/scsi.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_dbg.h>
51
#include <scsi/scsi_tcq.h>
52
#include <scsi/srp.h>
53
#include <scsi/scsi_transport_srp.h>
54 55 56 57 58

#include "ib_srp.h"

#define DRV_NAME	"ib_srp"
#define PFX		DRV_NAME ": "
59 60
#define DRV_VERSION	"2.0"
#define DRV_RELDATE	"July 26, 2015"
61 62

MODULE_AUTHOR("Roland Dreier");
63
MODULE_DESCRIPTION("InfiniBand SCSI RDMA Protocol initiator");
64
MODULE_LICENSE("Dual BSD/GPL");
65
MODULE_INFO(release_date, DRV_RELDATE);
66

67 68 69 70 71
#if !defined(CONFIG_DYNAMIC_DEBUG)
#define DEFINE_DYNAMIC_DEBUG_METADATA(name, fmt)
#define DYNAMIC_DEBUG_BRANCH(descriptor) false
#endif

72 73
static unsigned int srp_sg_tablesize;
static unsigned int cmd_sg_entries;
74 75
static unsigned int indirect_sg_entries;
static bool allow_ext_sg;
76 77
static bool prefer_fr = true;
static bool register_always = true;
78
static bool never_register;
79
static int topspin_workarounds = 1;
80

81 82
module_param(srp_sg_tablesize, uint, 0444);
MODULE_PARM_DESC(srp_sg_tablesize, "Deprecated name for cmd_sg_entries");
83

84 85 86
module_param(cmd_sg_entries, uint, 0444);
MODULE_PARM_DESC(cmd_sg_entries,
		 "Default number of gather/scatter entries in the SRP command (default is 12, max 255)");
87

88 89
module_param(indirect_sg_entries, uint, 0444);
MODULE_PARM_DESC(indirect_sg_entries,
90
		 "Default max number of gather/scatter entries (default is 12, max is " __stringify(SG_MAX_SEGMENTS) ")");
91 92 93 94 95

module_param(allow_ext_sg, bool, 0444);
MODULE_PARM_DESC(allow_ext_sg,
		  "Default behavior when there are more than cmd_sg_entries S/G entries after mapping; fails the request when false (default false)");

96 97 98 99
module_param(topspin_workarounds, int, 0444);
MODULE_PARM_DESC(topspin_workarounds,
		 "Enable workarounds for Topspin/Cisco SRP target bugs if != 0");

100 101 102 103
module_param(prefer_fr, bool, 0444);
MODULE_PARM_DESC(prefer_fr,
"Whether to use fast registration if both FMR and fast registration are supported");

104 105 106 107
module_param(register_always, bool, 0444);
MODULE_PARM_DESC(register_always,
		 "Use memory registration even for contiguous memory regions");

108 109 110
module_param(never_register, bool, 0444);
MODULE_PARM_DESC(never_register, "Never register memory");

111
static const struct kernel_param_ops srp_tmo_ops;
112

113 114 115 116 117
static int srp_reconnect_delay = 10;
module_param_cb(reconnect_delay, &srp_tmo_ops, &srp_reconnect_delay,
		S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(reconnect_delay, "Time between successive reconnect attempts");

118 119 120 121 122 123 124 125
static int srp_fast_io_fail_tmo = 15;
module_param_cb(fast_io_fail_tmo, &srp_tmo_ops, &srp_fast_io_fail_tmo,
		S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(fast_io_fail_tmo,
		 "Number of seconds between the observation of a transport"
		 " layer error and failing all I/O. \"off\" means that this"
		 " functionality is disabled.");

126
static int srp_dev_loss_tmo = 600;
127 128 129 130 131 132 133 134 135 136
module_param_cb(dev_loss_tmo, &srp_tmo_ops, &srp_dev_loss_tmo,
		S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(dev_loss_tmo,
		 "Maximum number of seconds that the SRP transport should"
		 " insulate transport layer errors. After this time has been"
		 " exceeded the SCSI host is removed. Should be"
		 " between 1 and " __stringify(SCSI_DEVICE_BLOCK_MAX_TIMEOUT)
		 " if fast_io_fail_tmo has not been set. \"off\" means that"
		 " this functionality is disabled.");

B
Bart Van Assche 已提交
137 138 139 140 141
static unsigned ch_count;
module_param(ch_count, uint, 0444);
MODULE_PARM_DESC(ch_count,
		 "Number of RDMA channels to use for communication with an SRP target. Using more than one channel improves performance if the HCA supports multiple completion vectors. The default value is the minimum of four times the number of online CPU sockets and the number of completion vectors supported by the HCA.");

142
static void srp_add_one(struct ib_device *device);
143
static void srp_remove_one(struct ib_device *device, void *client_data);
C
Christoph Hellwig 已提交
144 145 146
static void srp_recv_done(struct ib_cq *cq, struct ib_wc *wc);
static void srp_handle_qp_err(struct ib_cq *cq, struct ib_wc *wc,
		const char *opname);
147 148
static int srp_cm_handler(struct ib_cm_id *cm_id, struct ib_cm_event *event);

149
static struct scsi_transport_template *ib_srp_transport_template;
150
static struct workqueue_struct *srp_remove_wq;
151

152 153 154 155 156 157
static struct ib_client srp_client = {
	.name   = "srp",
	.add    = srp_add_one,
	.remove = srp_remove_one
};

158 159
static struct ib_sa_client srp_sa_client;

160 161 162 163 164 165 166 167 168 169 170 171 172 173
static int srp_tmo_get(char *buffer, const struct kernel_param *kp)
{
	int tmo = *(int *)kp->arg;

	if (tmo >= 0)
		return sprintf(buffer, "%d", tmo);
	else
		return sprintf(buffer, "off");
}

static int srp_tmo_set(const char *val, const struct kernel_param *kp)
{
	int tmo, res;

174 175 176 177
	res = srp_parse_tmo(&tmo, val);
	if (res)
		goto out;

178 179 180 181 182
	if (kp->arg == &srp_reconnect_delay)
		res = srp_tmo_valid(tmo, srp_fast_io_fail_tmo,
				    srp_dev_loss_tmo);
	else if (kp->arg == &srp_fast_io_fail_tmo)
		res = srp_tmo_valid(srp_reconnect_delay, tmo, srp_dev_loss_tmo);
183
	else
184 185
		res = srp_tmo_valid(srp_reconnect_delay, srp_fast_io_fail_tmo,
				    tmo);
186 187 188 189 190 191 192 193
	if (res)
		goto out;
	*(int *)kp->arg = tmo;

out:
	return res;
}

194
static const struct kernel_param_ops srp_tmo_ops = {
195 196 197 198
	.get = srp_tmo_get,
	.set = srp_tmo_set,
};

199 200 201 202 203 204 205 206 207 208
static inline struct srp_target_port *host_to_target(struct Scsi_Host *host)
{
	return (struct srp_target_port *) host->hostdata;
}

static const char *srp_target_info(struct Scsi_Host *host)
{
	return host_to_target(host)->target_name;
}

209 210 211
static int srp_target_is_topspin(struct srp_target_port *target)
{
	static const u8 topspin_oui[3] = { 0x00, 0x05, 0xad };
212
	static const u8 cisco_oui[3]   = { 0x00, 0x1b, 0x0d };
213 214

	return topspin_workarounds &&
215 216
		(!memcmp(&target->ioc_guid, topspin_oui, sizeof topspin_oui) ||
		 !memcmp(&target->ioc_guid, cisco_oui, sizeof cisco_oui));
217 218
}

219 220 221 222 223 224 225 226 227 228 229 230 231 232
static struct srp_iu *srp_alloc_iu(struct srp_host *host, size_t size,
				   gfp_t gfp_mask,
				   enum dma_data_direction direction)
{
	struct srp_iu *iu;

	iu = kmalloc(sizeof *iu, gfp_mask);
	if (!iu)
		goto out;

	iu->buf = kzalloc(size, gfp_mask);
	if (!iu->buf)
		goto out_free_iu;

233 234 235
	iu->dma = ib_dma_map_single(host->srp_dev->dev, iu->buf, size,
				    direction);
	if (ib_dma_mapping_error(host->srp_dev->dev, iu->dma))
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
		goto out_free_buf;

	iu->size      = size;
	iu->direction = direction;

	return iu;

out_free_buf:
	kfree(iu->buf);
out_free_iu:
	kfree(iu);
out:
	return NULL;
}

static void srp_free_iu(struct srp_host *host, struct srp_iu *iu)
{
	if (!iu)
		return;

256 257
	ib_dma_unmap_single(host->srp_dev->dev, iu->dma, iu->size,
			    iu->direction);
258 259 260 261 262 263
	kfree(iu->buf);
	kfree(iu);
}

static void srp_qp_event(struct ib_event *event, void *context)
{
264 265
	pr_debug("QP event %s (%d)\n",
		 ib_event_msg(event->event), event->event);
266 267 268 269 270 271 272 273 274 275 276 277
}

static int srp_init_qp(struct srp_target_port *target,
		       struct ib_qp *qp)
{
	struct ib_qp_attr *attr;
	int ret;

	attr = kmalloc(sizeof *attr, GFP_KERNEL);
	if (!attr)
		return -ENOMEM;

278 279 280 281
	ret = ib_find_cached_pkey(target->srp_host->srp_dev->dev,
				  target->srp_host->port,
				  be16_to_cpu(target->pkey),
				  &attr->pkey_index);
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
	if (ret)
		goto out;

	attr->qp_state        = IB_QPS_INIT;
	attr->qp_access_flags = (IB_ACCESS_REMOTE_READ |
				    IB_ACCESS_REMOTE_WRITE);
	attr->port_num        = target->srp_host->port;

	ret = ib_modify_qp(qp, attr,
			   IB_QP_STATE		|
			   IB_QP_PKEY_INDEX	|
			   IB_QP_ACCESS_FLAGS	|
			   IB_QP_PORT);

out:
	kfree(attr);
	return ret;
}

301
static int srp_new_cm_id(struct srp_rdma_ch *ch)
D
David Dillow 已提交
302
{
303
	struct srp_target_port *target = ch->target;
D
David Dillow 已提交
304 305
	struct ib_cm_id *new_cm_id;

306
	new_cm_id = ib_create_cm_id(target->srp_host->srp_dev->dev,
307
				    srp_cm_handler, ch);
D
David Dillow 已提交
308 309 310
	if (IS_ERR(new_cm_id))
		return PTR_ERR(new_cm_id);

311 312 313
	if (ch->cm_id)
		ib_destroy_cm_id(ch->cm_id);
	ch->cm_id = new_cm_id;
314 315 316 317 318
	if (rdma_cap_opa_ah(target->srp_host->srp_dev->dev,
			    target->srp_host->port))
		ch->path.rec_type = SA_PATH_REC_TYPE_OPA;
	else
		ch->path.rec_type = SA_PATH_REC_TYPE_IB;
319 320 321
	ch->path.sgid = target->sgid;
	ch->path.dgid = target->orig_dgid;
	ch->path.pkey = target->pkey;
322
	ch->path.service_id = target->service_id;
D
David Dillow 已提交
323 324 325 326

	return 0;
}

327 328 329 330 331 332
static struct ib_fmr_pool *srp_alloc_fmr_pool(struct srp_target_port *target)
{
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_fmr_pool_param fmr_param;

	memset(&fmr_param, 0, sizeof(fmr_param));
333
	fmr_param.pool_size	    = target->mr_pool_size;
334 335
	fmr_param.dirty_watermark   = fmr_param.pool_size / 4;
	fmr_param.cache		    = 1;
336 337
	fmr_param.max_pages_per_fmr = dev->max_pages_per_mr;
	fmr_param.page_shift	    = ilog2(dev->mr_page_size);
338 339 340 341 342 343 344
	fmr_param.access	    = (IB_ACCESS_LOCAL_WRITE |
				       IB_ACCESS_REMOTE_WRITE |
				       IB_ACCESS_REMOTE_READ);

	return ib_create_fmr_pool(dev->pd, &fmr_param);
}

345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392
/**
 * srp_destroy_fr_pool() - free the resources owned by a pool
 * @pool: Fast registration pool to be destroyed.
 */
static void srp_destroy_fr_pool(struct srp_fr_pool *pool)
{
	int i;
	struct srp_fr_desc *d;

	if (!pool)
		return;

	for (i = 0, d = &pool->desc[0]; i < pool->size; i++, d++) {
		if (d->mr)
			ib_dereg_mr(d->mr);
	}
	kfree(pool);
}

/**
 * srp_create_fr_pool() - allocate and initialize a pool for fast registration
 * @device:            IB device to allocate fast registration descriptors for.
 * @pd:                Protection domain associated with the FR descriptors.
 * @pool_size:         Number of descriptors to allocate.
 * @max_page_list_len: Maximum fast registration work request page list length.
 */
static struct srp_fr_pool *srp_create_fr_pool(struct ib_device *device,
					      struct ib_pd *pd, int pool_size,
					      int max_page_list_len)
{
	struct srp_fr_pool *pool;
	struct srp_fr_desc *d;
	struct ib_mr *mr;
	int i, ret = -EINVAL;

	if (pool_size <= 0)
		goto err;
	ret = -ENOMEM;
	pool = kzalloc(sizeof(struct srp_fr_pool) +
		       pool_size * sizeof(struct srp_fr_desc), GFP_KERNEL);
	if (!pool)
		goto err;
	pool->size = pool_size;
	pool->max_page_list_len = max_page_list_len;
	spin_lock_init(&pool->lock);
	INIT_LIST_HEAD(&pool->free_list);

	for (i = 0, d = &pool->desc[0]; i < pool->size; i++, d++) {
393 394
		mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG,
				 max_page_list_len);
395 396
		if (IS_ERR(mr)) {
			ret = PTR_ERR(mr);
397 398 399
			if (ret == -ENOMEM)
				pr_info("%s: ib_alloc_mr() failed. Try to reduce max_cmd_per_lun, max_sect or ch_count\n",
					dev_name(&device->dev));
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
			goto destroy_pool;
		}
		d->mr = mr;
		list_add_tail(&d->entry, &pool->free_list);
	}

out:
	return pool;

destroy_pool:
	srp_destroy_fr_pool(pool);

err:
	pool = ERR_PTR(ret);
	goto out;
}

/**
 * srp_fr_pool_get() - obtain a descriptor suitable for fast registration
 * @pool: Pool to obtain descriptor from.
 */
static struct srp_fr_desc *srp_fr_pool_get(struct srp_fr_pool *pool)
{
	struct srp_fr_desc *d = NULL;
	unsigned long flags;

	spin_lock_irqsave(&pool->lock, flags);
	if (!list_empty(&pool->free_list)) {
		d = list_first_entry(&pool->free_list, typeof(*d), entry);
		list_del(&d->entry);
	}
	spin_unlock_irqrestore(&pool->lock, flags);

	return d;
}

/**
 * srp_fr_pool_put() - put an FR descriptor back in the free list
 * @pool: Pool the descriptor was allocated from.
 * @desc: Pointer to an array of fast registration descriptor pointers.
 * @n:    Number of descriptors to put back.
 *
 * Note: The caller must already have queued an invalidation request for
 * desc->mr->rkey before calling this function.
 */
static void srp_fr_pool_put(struct srp_fr_pool *pool, struct srp_fr_desc **desc,
			    int n)
{
	unsigned long flags;
	int i;

	spin_lock_irqsave(&pool->lock, flags);
	for (i = 0; i < n; i++)
		list_add(&desc[i]->entry, &pool->free_list);
	spin_unlock_irqrestore(&pool->lock, flags);
}

static struct srp_fr_pool *srp_alloc_fr_pool(struct srp_target_port *target)
{
	struct srp_device *dev = target->srp_host->srp_dev;

461
	return srp_create_fr_pool(dev->dev, dev->pd, target->mr_pool_size,
462 463 464
				  dev->max_pages_per_mr);
}

465 466
/**
 * srp_destroy_qp() - destroy an RDMA queue pair
467
 * @ch: SRP RDMA channel.
468
 *
S
Steve Wise 已提交
469 470
 * Drain the qp before destroying it.  This avoids that the receive
 * completion handler can access the queue pair while it is
471 472
 * being destroyed.
 */
473
static void srp_destroy_qp(struct srp_rdma_ch *ch)
474
{
475 476 477 478
	spin_lock_irq(&ch->lock);
	ib_process_cq_direct(ch->send_cq, -1);
	spin_unlock_irq(&ch->lock);

479 480
	ib_drain_qp(ch->qp);
	ib_destroy_qp(ch->qp);
481 482
}

483
static int srp_create_ch_ib(struct srp_rdma_ch *ch)
484
{
485
	struct srp_target_port *target = ch->target;
486
	struct srp_device *dev = target->srp_host->srp_dev;
487
	struct ib_qp_init_attr *init_attr;
488 489
	struct ib_cq *recv_cq, *send_cq;
	struct ib_qp *qp;
490
	struct ib_fmr_pool *fmr_pool = NULL;
491
	struct srp_fr_pool *fr_pool = NULL;
492
	const int m = 1 + dev->use_fast_reg * target->mr_per_cmd * 2;
493 494 495 496 497 498
	int ret;

	init_attr = kzalloc(sizeof *init_attr, GFP_KERNEL);
	if (!init_attr)
		return -ENOMEM;

S
Steve Wise 已提交
499
	/* queue_size + 1 for ib_drain_rq() */
C
Christoph Hellwig 已提交
500 501
	recv_cq = ib_alloc_cq(dev->dev, ch, target->queue_size + 1,
				ch->comp_vector, IB_POLL_SOFTIRQ);
502 503
	if (IS_ERR(recv_cq)) {
		ret = PTR_ERR(recv_cq);
504
		goto err;
505 506
	}

C
Christoph Hellwig 已提交
507 508
	send_cq = ib_alloc_cq(dev->dev, ch, m * target->queue_size,
				ch->comp_vector, IB_POLL_DIRECT);
509 510
	if (IS_ERR(send_cq)) {
		ret = PTR_ERR(send_cq);
511
		goto err_recv_cq;
512 513
	}

514
	init_attr->event_handler       = srp_qp_event;
515
	init_attr->cap.max_send_wr     = m * target->queue_size;
516
	init_attr->cap.max_recv_wr     = target->queue_size + 1;
517 518
	init_attr->cap.max_recv_sge    = 1;
	init_attr->cap.max_send_sge    = 1;
519
	init_attr->sq_sig_type         = IB_SIGNAL_REQ_WR;
520
	init_attr->qp_type             = IB_QPT_RC;
521 522
	init_attr->send_cq             = send_cq;
	init_attr->recv_cq             = recv_cq;
523

524
	qp = ib_create_qp(dev->pd, init_attr);
525 526
	if (IS_ERR(qp)) {
		ret = PTR_ERR(qp);
527
		goto err_send_cq;
528 529
	}

530
	ret = srp_init_qp(target, qp);
531 532
	if (ret)
		goto err_qp;
533

534
	if (dev->use_fast_reg) {
535 536 537 538 539 540 541
		fr_pool = srp_alloc_fr_pool(target);
		if (IS_ERR(fr_pool)) {
			ret = PTR_ERR(fr_pool);
			shost_printk(KERN_WARNING, target->scsi_host, PFX
				     "FR pool allocation failed (%d)\n", ret);
			goto err_qp;
		}
542
	} else if (dev->use_fmr) {
543 544 545 546 547 548 549 550 551
		fmr_pool = srp_alloc_fmr_pool(target);
		if (IS_ERR(fmr_pool)) {
			ret = PTR_ERR(fmr_pool);
			shost_printk(KERN_WARNING, target->scsi_host, PFX
				     "FMR pool allocation failed (%d)\n", ret);
			goto err_qp;
		}
	}

552
	if (ch->qp)
553
		srp_destroy_qp(ch);
554
	if (ch->recv_cq)
C
Christoph Hellwig 已提交
555
		ib_free_cq(ch->recv_cq);
556
	if (ch->send_cq)
C
Christoph Hellwig 已提交
557
		ib_free_cq(ch->send_cq);
558

559 560 561
	ch->qp = qp;
	ch->recv_cq = recv_cq;
	ch->send_cq = send_cq;
562

563 564 565 566 567 568 569 570 571 572
	if (dev->use_fast_reg) {
		if (ch->fr_pool)
			srp_destroy_fr_pool(ch->fr_pool);
		ch->fr_pool = fr_pool;
	} else if (dev->use_fmr) {
		if (ch->fmr_pool)
			ib_destroy_fmr_pool(ch->fmr_pool);
		ch->fmr_pool = fmr_pool;
	}

573 574 575 576
	kfree(init_attr);
	return 0;

err_qp:
577
	ib_destroy_qp(qp);
578 579

err_send_cq:
C
Christoph Hellwig 已提交
580
	ib_free_cq(send_cq);
581 582

err_recv_cq:
C
Christoph Hellwig 已提交
583
	ib_free_cq(recv_cq);
584 585

err:
586 587 588 589
	kfree(init_attr);
	return ret;
}

590 591
/*
 * Note: this function may be called without srp_alloc_iu_bufs() having been
592
 * invoked. Hence the ch->[rt]x_ring checks.
593
 */
594 595
static void srp_free_ch_ib(struct srp_target_port *target,
			   struct srp_rdma_ch *ch)
596
{
597
	struct srp_device *dev = target->srp_host->srp_dev;
598 599
	int i;

B
Bart Van Assche 已提交
600 601 602
	if (!ch->target)
		return;

603 604 605
	if (ch->cm_id) {
		ib_destroy_cm_id(ch->cm_id);
		ch->cm_id = NULL;
606 607
	}

B
Bart Van Assche 已提交
608 609 610 611
	/* If srp_new_cm_id() succeeded but srp_create_ch_ib() not, return. */
	if (!ch->qp)
		return;

612
	if (dev->use_fast_reg) {
613 614
		if (ch->fr_pool)
			srp_destroy_fr_pool(ch->fr_pool);
615
	} else if (dev->use_fmr) {
616 617
		if (ch->fmr_pool)
			ib_destroy_fmr_pool(ch->fmr_pool);
618
	}
C
Christoph Hellwig 已提交
619

620
	srp_destroy_qp(ch);
C
Christoph Hellwig 已提交
621 622
	ib_free_cq(ch->send_cq);
	ib_free_cq(ch->recv_cq);
623

B
Bart Van Assche 已提交
624 625 626 627 628 629 630 631
	/*
	 * Avoid that the SCSI error handler tries to use this channel after
	 * it has been freed. The SCSI error handler can namely continue
	 * trying to perform recovery actions after scsi_remove_host()
	 * returned.
	 */
	ch->target = NULL;

632 633
	ch->qp = NULL;
	ch->send_cq = ch->recv_cq = NULL;
634

635
	if (ch->rx_ring) {
636
		for (i = 0; i < target->queue_size; ++i)
637 638 639
			srp_free_iu(target->srp_host, ch->rx_ring[i]);
		kfree(ch->rx_ring);
		ch->rx_ring = NULL;
640
	}
641
	if (ch->tx_ring) {
642
		for (i = 0; i < target->queue_size; ++i)
643 644 645
			srp_free_iu(target->srp_host, ch->tx_ring[i]);
		kfree(ch->tx_ring);
		ch->tx_ring = NULL;
646
	}
647 648 649
}

static void srp_path_rec_completion(int status,
650
				    struct sa_path_rec *pathrec,
651
				    void *ch_ptr)
652
{
653 654
	struct srp_rdma_ch *ch = ch_ptr;
	struct srp_target_port *target = ch->target;
655

656
	ch->status = status;
657
	if (status)
658 659
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "Got failed path rec status %d\n", status);
660
	else
661 662
		ch->path = *pathrec;
	complete(&ch->done);
663 664
}

665
static int srp_lookup_path(struct srp_rdma_ch *ch)
666
{
667
	struct srp_target_port *target = ch->target;
668
	int ret = -ENODEV;
669

670 671 672 673
	ch->path.numb_path = 1;

	init_completion(&ch->done);

674 675 676 677 678 679 680
	/*
	 * Avoid that the SCSI host can be removed by srp_remove_target()
	 * before srp_path_rec_completion() is called.
	 */
	if (!scsi_host_get(target->scsi_host))
		goto out;

681 682 683 684 685 686 687 688 689 690 691 692 693
	ch->path_query_id = ib_sa_path_rec_get(&srp_sa_client,
					       target->srp_host->srp_dev->dev,
					       target->srp_host->port,
					       &ch->path,
					       IB_SA_PATH_REC_SERVICE_ID |
					       IB_SA_PATH_REC_DGID	 |
					       IB_SA_PATH_REC_SGID	 |
					       IB_SA_PATH_REC_NUMB_PATH	 |
					       IB_SA_PATH_REC_PKEY,
					       SRP_PATH_REC_TIMEOUT_MS,
					       GFP_KERNEL,
					       srp_path_rec_completion,
					       ch, &ch->path_query);
694 695 696
	ret = ch->path_query_id;
	if (ret < 0)
		goto put;
697 698

	ret = wait_for_completion_interruptible(&ch->done);
699
	if (ret < 0)
700
		goto put;
701

702 703
	ret = ch->status;
	if (ret < 0)
704 705
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Path record query failed\n");
706

707 708 709 710 711
put:
	scsi_host_put(target->scsi_host);

out:
	return ret;
712 713
}

714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
static u8 srp_get_subnet_timeout(struct srp_host *host)
{
	struct ib_port_attr attr;
	int ret;
	u8 subnet_timeout = 18;

	ret = ib_query_port(host->srp_dev->dev, host->port, &attr);
	if (ret == 0)
		subnet_timeout = attr.subnet_timeout;

	if (unlikely(subnet_timeout < 15))
		pr_warn("%s: subnet timeout %d may cause SRP login to fail.\n",
			dev_name(&host->srp_dev->dev->dev), subnet_timeout);

	return subnet_timeout;
}

B
Bart Van Assche 已提交
731
static int srp_send_req(struct srp_rdma_ch *ch, bool multich)
732
{
733
	struct srp_target_port *target = ch->target;
734 735 736 737 738
	struct {
		struct ib_cm_req_param param;
		struct srp_login_req   priv;
	} *req = NULL;
	int status;
739 740 741
	u8 subnet_timeout;

	subnet_timeout = srp_get_subnet_timeout(target->srp_host);
742 743 744 745 746

	req = kzalloc(sizeof *req, GFP_KERNEL);
	if (!req)
		return -ENOMEM;

747
	req->param.primary_path		      = &ch->path;
748 749
	req->param.alternate_path 	      = NULL;
	req->param.service_id 		      = target->service_id;
750 751
	req->param.qp_num		      = ch->qp->qp_num;
	req->param.qp_type		      = ch->qp->qp_type;
752 753 754 755 756 757 758 759 760 761 762 763
	req->param.private_data 	      = &req->priv;
	req->param.private_data_len 	      = sizeof req->priv;
	req->param.flow_control 	      = 1;

	get_random_bytes(&req->param.starting_psn, 4);
	req->param.starting_psn 	     &= 0xffffff;

	/*
	 * Pick some arbitrary defaults here; we could make these
	 * module parameters if anyone cared about setting them.
	 */
	req->param.responder_resources	      = 4;
764 765
	req->param.remote_cm_response_timeout = subnet_timeout + 2;
	req->param.local_cm_response_timeout  = subnet_timeout + 2;
766
	req->param.retry_count                = target->tl_retry_count;
767 768 769 770 771
	req->param.rnr_retry_count 	      = 7;
	req->param.max_cm_retries 	      = 15;

	req->priv.opcode     	= SRP_LOGIN_REQ;
	req->priv.tag        	= 0;
772
	req->priv.req_it_iu_len = cpu_to_be32(target->max_iu_len);
773 774
	req->priv.req_buf_fmt 	= cpu_to_be16(SRP_BUF_FORMAT_DIRECT |
					      SRP_BUF_FORMAT_INDIRECT);
B
Bart Van Assche 已提交
775 776
	req->priv.req_flags	= (multich ? SRP_MULTICHAN_MULTI :
				   SRP_MULTICHAN_SINGLE);
777
	/*
R
Roland Dreier 已提交
778
	 * In the published SRP specification (draft rev. 16a), the
779 780 781 782 783 784 785 786 787
	 * port identifier format is 8 bytes of ID extension followed
	 * by 8 bytes of GUID.  Older drafts put the two halves in the
	 * opposite order, so that the GUID comes first.
	 *
	 * Targets conforming to these obsolete drafts can be
	 * recognized by the I/O Class they report.
	 */
	if (target->io_class == SRP_REV10_IB_IO_CLASS) {
		memcpy(req->priv.initiator_port_id,
788
		       &target->sgid.global.interface_id, 8);
789
		memcpy(req->priv.initiator_port_id + 8,
790
		       &target->initiator_ext, 8);
791 792 793 794
		memcpy(req->priv.target_port_id,     &target->ioc_guid, 8);
		memcpy(req->priv.target_port_id + 8, &target->id_ext, 8);
	} else {
		memcpy(req->priv.initiator_port_id,
795 796
		       &target->initiator_ext, 8);
		memcpy(req->priv.initiator_port_id + 8,
797
		       &target->sgid.global.interface_id, 8);
798 799 800 801
		memcpy(req->priv.target_port_id,     &target->id_ext, 8);
		memcpy(req->priv.target_port_id + 8, &target->ioc_guid, 8);
	}

802 803
	/*
	 * Topspin/Cisco SRP targets will reject our login unless we
804 805
	 * zero out the first 8 bytes of our initiator port ID and set
	 * the second 8 bytes to the local node GUID.
806
	 */
807
	if (srp_target_is_topspin(target)) {
808 809 810
		shost_printk(KERN_DEBUG, target->scsi_host,
			     PFX "Topspin/Cisco initiator port ID workaround "
			     "activated for target GUID %016llx\n",
811
			     be64_to_cpu(target->ioc_guid));
812
		memset(req->priv.initiator_port_id, 0, 8);
813
		memcpy(req->priv.initiator_port_id + 8,
814
		       &target->srp_host->srp_dev->dev->node_guid, 8);
815 816
	}

817
	status = ib_send_cm_req(ch->cm_id, &req->param);
818 819 820 821 822 823

	kfree(req);

	return status;
}

824 825 826 827 828 829 830 831 832 833 834 835
static bool srp_queue_remove_work(struct srp_target_port *target)
{
	bool changed = false;

	spin_lock_irq(&target->lock);
	if (target->state != SRP_TARGET_REMOVED) {
		target->state = SRP_TARGET_REMOVED;
		changed = true;
	}
	spin_unlock_irq(&target->lock);

	if (changed)
836
		queue_work(srp_remove_wq, &target->remove_work);
837 838 839 840

	return changed;
}

841 842
static void srp_disconnect_target(struct srp_target_port *target)
{
B
Bart Van Assche 已提交
843 844
	struct srp_rdma_ch *ch;
	int i;
845

846
	/* XXX should send SRP_I_LOGOUT request */
847

848 849 850 851 852 853
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		ch->connected = false;
		if (ch->cm_id && ib_send_cm_dreq(ch->cm_id, NULL, 0)) {
			shost_printk(KERN_DEBUG, target->scsi_host,
				     PFX "Sending CM DREQ failed\n");
854
		}
855
	}
856 857
}

858 859
static void srp_free_req_data(struct srp_target_port *target,
			      struct srp_rdma_ch *ch)
860
{
861 862
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = dev->dev;
863 864 865
	struct srp_request *req;
	int i;

866
	if (!ch->req_ring)
867 868 869
		return;

	for (i = 0; i < target->req_ring_size; ++i) {
870
		req = &ch->req_ring[i];
871
		if (dev->use_fast_reg) {
872
			kfree(req->fr_list);
873
		} else {
874
			kfree(req->fmr_list);
875 876
			kfree(req->map_page);
		}
877 878 879 880 881 882
		if (req->indirect_dma_addr) {
			ib_dma_unmap_single(ibdev, req->indirect_dma_addr,
					    target->indirect_size,
					    DMA_TO_DEVICE);
		}
		kfree(req->indirect_desc);
883
	}
884

885 886
	kfree(ch->req_ring);
	ch->req_ring = NULL;
887 888
}

889
static int srp_alloc_req_data(struct srp_rdma_ch *ch)
890
{
891
	struct srp_target_port *target = ch->target;
892 893 894
	struct srp_device *srp_dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = srp_dev->dev;
	struct srp_request *req;
895
	void *mr_list;
896 897 898
	dma_addr_t dma_addr;
	int i, ret = -ENOMEM;

899 900 901
	ch->req_ring = kcalloc(target->req_ring_size, sizeof(*ch->req_ring),
			       GFP_KERNEL);
	if (!ch->req_ring)
902 903 904
		goto out;

	for (i = 0; i < target->req_ring_size; ++i) {
905
		req = &ch->req_ring[i];
906
		mr_list = kmalloc(target->mr_per_cmd * sizeof(void *),
907 908 909
				  GFP_KERNEL);
		if (!mr_list)
			goto out;
910
		if (srp_dev->use_fast_reg) {
911
			req->fr_list = mr_list;
912
		} else {
913
			req->fmr_list = mr_list;
914 915 916 917 918
			req->map_page = kmalloc(srp_dev->max_pages_per_mr *
						sizeof(void *), GFP_KERNEL);
			if (!req->map_page)
				goto out;
		}
919
		req->indirect_desc = kmalloc(target->indirect_size, GFP_KERNEL);
920
		if (!req->indirect_desc)
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
			goto out;

		dma_addr = ib_dma_map_single(ibdev, req->indirect_desc,
					     target->indirect_size,
					     DMA_TO_DEVICE);
		if (ib_dma_mapping_error(ibdev, dma_addr))
			goto out;

		req->indirect_dma_addr = dma_addr;
	}
	ret = 0;

out:
	return ret;
}

937 938 939 940 941 942 943 944 945 946 947 948 949 950 951
/**
 * srp_del_scsi_host_attr() - Remove attributes defined in the host template.
 * @shost: SCSI host whose attributes to remove from sysfs.
 *
 * Note: Any attributes defined in the host template and that did not exist
 * before invocation of this function will be ignored.
 */
static void srp_del_scsi_host_attr(struct Scsi_Host *shost)
{
	struct device_attribute **attr;

	for (attr = shost->hostt->shost_attrs; attr && *attr; ++attr)
		device_remove_file(&shost->shost_dev, *attr);
}

952 953
static void srp_remove_target(struct srp_target_port *target)
{
B
Bart Van Assche 已提交
954 955
	struct srp_rdma_ch *ch;
	int i;
956

957 958
	WARN_ON_ONCE(target->state != SRP_TARGET_REMOVED);

959
	srp_del_scsi_host_attr(target->scsi_host);
960
	srp_rport_get(target->rport);
961 962
	srp_remove_host(target->scsi_host);
	scsi_remove_host(target->scsi_host);
963
	srp_stop_rport_timers(target->rport);
964
	srp_disconnect_target(target);
B
Bart Van Assche 已提交
965 966 967 968
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		srp_free_ch_ib(target, ch);
	}
969
	cancel_work_sync(&target->tl_err_work);
970
	srp_rport_put(target->rport);
B
Bart Van Assche 已提交
971 972 973 974 975 976
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		srp_free_req_data(target, ch);
	}
	kfree(target->ch);
	target->ch = NULL;
977 978 979 980 981

	spin_lock(&target->srp_host->target_lock);
	list_del(&target->list);
	spin_unlock(&target->srp_host->target_lock);

982 983 984
	scsi_host_put(target->scsi_host);
}

D
David Howells 已提交
985
static void srp_remove_work(struct work_struct *work)
986
{
D
David Howells 已提交
987
	struct srp_target_port *target =
988
		container_of(work, struct srp_target_port, remove_work);
989

990
	WARN_ON_ONCE(target->state != SRP_TARGET_REMOVED);
991

992
	srp_remove_target(target);
993 994
}

995 996 997 998 999 1000 1001
static void srp_rport_delete(struct srp_rport *rport)
{
	struct srp_target_port *target = rport->lld_data;

	srp_queue_remove_work(target);
}

1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
/**
 * srp_connected_ch() - number of connected channels
 * @target: SRP target port.
 */
static int srp_connected_ch(struct srp_target_port *target)
{
	int i, c = 0;

	for (i = 0; i < target->ch_count; i++)
		c += target->ch[i].connected;

	return c;
}

B
Bart Van Assche 已提交
1016
static int srp_connect_ch(struct srp_rdma_ch *ch, bool multich)
1017
{
1018
	struct srp_target_port *target = ch->target;
1019 1020
	int ret;

1021
	WARN_ON_ONCE(!multich && srp_connected_ch(target) > 0);
1022

1023
	ret = srp_lookup_path(ch);
1024
	if (ret)
B
Bart Van Assche 已提交
1025
		goto out;
1026 1027

	while (1) {
1028
		init_completion(&ch->done);
B
Bart Van Assche 已提交
1029
		ret = srp_send_req(ch, multich);
1030
		if (ret)
B
Bart Van Assche 已提交
1031
			goto out;
1032
		ret = wait_for_completion_interruptible(&ch->done);
1033
		if (ret < 0)
B
Bart Van Assche 已提交
1034
			goto out;
1035 1036 1037 1038 1039 1040 1041

		/*
		 * The CM event handling code will set status to
		 * SRP_PORT_REDIRECT if we get a port redirect REJ
		 * back, or SRP_DLID_REDIRECT if we get a lid/qp
		 * redirect REJ back.
		 */
B
Bart Van Assche 已提交
1042 1043
		ret = ch->status;
		switch (ret) {
1044
		case 0:
1045
			ch->connected = true;
B
Bart Van Assche 已提交
1046
			goto out;
1047 1048

		case SRP_PORT_REDIRECT:
1049
			ret = srp_lookup_path(ch);
1050
			if (ret)
B
Bart Van Assche 已提交
1051
				goto out;
1052 1053 1054 1055 1056
			break;

		case SRP_DLID_REDIRECT:
			break;

D
David Dillow 已提交
1057 1058
		case SRP_STALE_CONN:
			shost_printk(KERN_ERR, target->scsi_host, PFX
1059
				     "giving up on stale connection\n");
B
Bart Van Assche 已提交
1060 1061
			ret = -ECONNRESET;
			goto out;
D
David Dillow 已提交
1062

1063
		default:
B
Bart Van Assche 已提交
1064
			goto out;
1065 1066
		}
	}
B
Bart Van Assche 已提交
1067 1068 1069

out:
	return ret <= 0 ? ret : -ENODEV;
1070 1071
}

C
Christoph Hellwig 已提交
1072 1073 1074 1075 1076 1077 1078
static void srp_inv_rkey_err_done(struct ib_cq *cq, struct ib_wc *wc)
{
	srp_handle_qp_err(cq, wc, "INV RKEY");
}

static int srp_inv_rkey(struct srp_request *req, struct srp_rdma_ch *ch,
		u32 rkey)
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
{
	struct ib_send_wr *bad_wr;
	struct ib_send_wr wr = {
		.opcode		    = IB_WR_LOCAL_INV,
		.next		    = NULL,
		.num_sge	    = 0,
		.send_flags	    = 0,
		.ex.invalidate_rkey = rkey,
	};

C
Christoph Hellwig 已提交
1089 1090
	wr.wr_cqe = &req->reg_cqe;
	req->reg_cqe.done = srp_inv_rkey_err_done;
1091
	return ib_post_send(ch->qp, &wr, &bad_wr);
1092 1093
}

1094
static void srp_unmap_data(struct scsi_cmnd *scmnd,
1095
			   struct srp_rdma_ch *ch,
1096 1097
			   struct srp_request *req)
{
1098
	struct srp_target_port *target = ch->target;
1099 1100 1101
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = dev->dev;
	int i, res;
1102

1103
	if (!scsi_sglist(scmnd) ||
1104 1105 1106 1107
	    (scmnd->sc_data_direction != DMA_TO_DEVICE &&
	     scmnd->sc_data_direction != DMA_FROM_DEVICE))
		return;

1108 1109 1110 1111
	if (dev->use_fast_reg) {
		struct srp_fr_desc **pfr;

		for (i = req->nmdesc, pfr = req->fr_list; i > 0; i--, pfr++) {
C
Christoph Hellwig 已提交
1112
			res = srp_inv_rkey(req, ch, (*pfr)->mr->rkey);
1113 1114 1115 1116 1117 1118 1119 1120 1121
			if (res < 0) {
				shost_printk(KERN_ERR, target->scsi_host, PFX
				  "Queueing INV WR for rkey %#x failed (%d)\n",
				  (*pfr)->mr->rkey, res);
				queue_work(system_long_wq,
					   &target->tl_err_work);
			}
		}
		if (req->nmdesc)
1122
			srp_fr_pool_put(ch->fr_pool, req->fr_list,
1123
					req->nmdesc);
1124
	} else if (dev->use_fmr) {
1125 1126 1127 1128 1129
		struct ib_pool_fmr **pfmr;

		for (i = req->nmdesc, pfmr = req->fmr_list; i > 0; i--, pfmr++)
			ib_fmr_pool_unmap(*pfmr);
	}
1130

1131 1132
	ib_dma_unmap_sg(ibdev, scsi_sglist(scmnd), scsi_sg_count(scmnd),
			scmnd->sc_data_direction);
1133 1134
}

B
Bart Van Assche 已提交
1135 1136
/**
 * srp_claim_req - Take ownership of the scmnd associated with a request.
1137
 * @ch: SRP RDMA channel.
B
Bart Van Assche 已提交
1138
 * @req: SRP request.
1139
 * @sdev: If not NULL, only take ownership for this SCSI device.
B
Bart Van Assche 已提交
1140 1141 1142 1143 1144 1145
 * @scmnd: If NULL, take ownership of @req->scmnd. If not NULL, only take
 *         ownership of @req->scmnd if it equals @scmnd.
 *
 * Return value:
 * Either NULL or a pointer to the SCSI command the caller became owner of.
 */
1146
static struct scsi_cmnd *srp_claim_req(struct srp_rdma_ch *ch,
B
Bart Van Assche 已提交
1147
				       struct srp_request *req,
1148
				       struct scsi_device *sdev,
B
Bart Van Assche 已提交
1149 1150 1151 1152
				       struct scsi_cmnd *scmnd)
{
	unsigned long flags;

1153
	spin_lock_irqsave(&ch->lock, flags);
1154 1155 1156
	if (req->scmnd &&
	    (!sdev || req->scmnd->device == sdev) &&
	    (!scmnd || req->scmnd == scmnd)) {
B
Bart Van Assche 已提交
1157 1158 1159 1160 1161
		scmnd = req->scmnd;
		req->scmnd = NULL;
	} else {
		scmnd = NULL;
	}
1162
	spin_unlock_irqrestore(&ch->lock, flags);
B
Bart Van Assche 已提交
1163 1164 1165 1166 1167

	return scmnd;
}

/**
B
Bart Van Assche 已提交
1168
 * srp_free_req() - Unmap data and adjust ch->req_lim.
1169
 * @ch:     SRP RDMA channel.
1170 1171 1172
 * @req:    Request to be freed.
 * @scmnd:  SCSI command associated with @req.
 * @req_lim_delta: Amount to be added to @target->req_lim.
B
Bart Van Assche 已提交
1173
 */
1174 1175
static void srp_free_req(struct srp_rdma_ch *ch, struct srp_request *req,
			 struct scsi_cmnd *scmnd, s32 req_lim_delta)
1176
{
1177 1178
	unsigned long flags;

1179
	srp_unmap_data(scmnd, ch, req);
B
Bart Van Assche 已提交
1180

1181 1182 1183
	spin_lock_irqsave(&ch->lock, flags);
	ch->req_lim += req_lim_delta;
	spin_unlock_irqrestore(&ch->lock, flags);
1184 1185
}

1186 1187
static void srp_finish_req(struct srp_rdma_ch *ch, struct srp_request *req,
			   struct scsi_device *sdev, int result)
1188
{
1189
	struct scsi_cmnd *scmnd = srp_claim_req(ch, req, sdev, NULL);
B
Bart Van Assche 已提交
1190 1191

	if (scmnd) {
1192
		srp_free_req(ch, req, scmnd, 0);
1193
		scmnd->result = result;
B
Bart Van Assche 已提交
1194 1195
		scmnd->scsi_done(scmnd);
	}
1196 1197
}

1198
static void srp_terminate_io(struct srp_rport *rport)
1199
{
1200
	struct srp_target_port *target = rport->lld_data;
B
Bart Van Assche 已提交
1201
	struct srp_rdma_ch *ch;
1202 1203
	struct Scsi_Host *shost = target->scsi_host;
	struct scsi_device *sdev;
B
Bart Van Assche 已提交
1204
	int i, j;
1205

1206 1207 1208 1209 1210 1211 1212
	/*
	 * Invoking srp_terminate_io() while srp_queuecommand() is running
	 * is not safe. Hence the warning statement below.
	 */
	shost_for_each_device(sdev, shost)
		WARN_ON_ONCE(sdev->request_queue->request_fn_active);

B
Bart Van Assche 已提交
1213 1214
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
1215

B
Bart Van Assche 已提交
1216 1217 1218 1219 1220 1221
		for (j = 0; j < target->req_ring_size; ++j) {
			struct srp_request *req = &ch->req_ring[j];

			srp_finish_req(ch, req, NULL,
				       DID_TRANSPORT_FAILFAST << 16);
		}
1222 1223
	}
}
1224

1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
/*
 * It is up to the caller to ensure that srp_rport_reconnect() calls are
 * serialized and that no concurrent srp_queuecommand(), srp_abort(),
 * srp_reset_device() or srp_reset_host() calls will occur while this function
 * is in progress. One way to realize that is not to call this function
 * directly but to call srp_reconnect_rport() instead since that last function
 * serializes calls of this function via rport->mutex and also blocks
 * srp_queuecommand() calls before invoking this function.
 */
static int srp_rport_reconnect(struct srp_rport *rport)
{
	struct srp_target_port *target = rport->lld_data;
B
Bart Van Assche 已提交
1237 1238 1239
	struct srp_rdma_ch *ch;
	int i, j, ret = 0;
	bool multich = false;
1240

1241
	srp_disconnect_target(target);
1242 1243 1244 1245

	if (target->state == SRP_TARGET_SCANNING)
		return -ENODEV;

1246
	/*
1247 1248 1249
	 * Now get a new local CM ID so that we avoid confusing the target in
	 * case things are really fouled up. Doing so also ensures that all CM
	 * callbacks will have finished before a new QP is allocated.
1250
	 */
B
Bart Van Assche 已提交
1251 1252 1253
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		ret += srp_new_cm_id(ch);
1254
	}
B
Bart Van Assche 已提交
1255 1256 1257 1258
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		for (j = 0; j < target->req_ring_size; ++j) {
			struct srp_request *req = &ch->req_ring[j];
1259

B
Bart Van Assche 已提交
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
			srp_finish_req(ch, req, NULL, DID_RESET << 16);
		}
	}
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		/*
		 * Whether or not creating a new CM ID succeeded, create a new
		 * QP. This guarantees that all completion callback function
		 * invocations have finished before request resetting starts.
		 */
		ret += srp_create_ch_ib(ch);
1271

B
Bart Van Assche 已提交
1272 1273 1274 1275
		INIT_LIST_HEAD(&ch->free_tx);
		for (j = 0; j < target->queue_size; ++j)
			list_add(&ch->tx_ring[j]->list, &ch->free_tx);
	}
1276 1277 1278

	target->qp_in_error = false;

B
Bart Van Assche 已提交
1279 1280
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
1281
		if (ret)
B
Bart Van Assche 已提交
1282 1283 1284 1285
			break;
		ret = srp_connect_ch(ch, multich);
		multich = true;
	}
1286

1287 1288 1289
	if (ret == 0)
		shost_printk(KERN_INFO, target->scsi_host,
			     PFX "reconnect succeeded\n");
1290 1291 1292 1293

	return ret;
}

1294 1295
static void srp_map_desc(struct srp_map_state *state, dma_addr_t dma_addr,
			 unsigned int dma_len, u32 rkey)
1296
{
1297
	struct srp_direct_buf *desc = state->desc;
1298

1299 1300
	WARN_ON_ONCE(!dma_len);

1301 1302 1303
	desc->va = cpu_to_be64(dma_addr);
	desc->key = cpu_to_be32(rkey);
	desc->len = cpu_to_be32(dma_len);
1304

1305 1306 1307 1308
	state->total_len += dma_len;
	state->desc++;
	state->ndesc++;
}
1309

1310
static int srp_map_finish_fmr(struct srp_map_state *state,
1311
			      struct srp_rdma_ch *ch)
1312
{
1313 1314
	struct srp_target_port *target = ch->target;
	struct srp_device *dev = target->srp_host->srp_dev;
1315 1316
	struct ib_pool_fmr *fmr;
	u64 io_addr = 0;
1317

1318 1319 1320 1321
	if (state->fmr.next >= state->fmr.end) {
		shost_printk(KERN_ERR, ch->target->scsi_host,
			     PFX "Out of MRs (mr_per_cmd = %d)\n",
			     ch->target->mr_per_cmd);
1322
		return -ENOMEM;
1323
	}
1324

S
Sagi Grimberg 已提交
1325 1326 1327 1328 1329
	WARN_ON_ONCE(!dev->use_fmr);

	if (state->npages == 0)
		return 0;

B
Bart Van Assche 已提交
1330
	if (state->npages == 1 && target->global_rkey) {
S
Sagi Grimberg 已提交
1331
		srp_map_desc(state, state->base_dma_addr, state->dma_len,
B
Bart Van Assche 已提交
1332
			     target->global_rkey);
S
Sagi Grimberg 已提交
1333 1334 1335
		goto reset_state;
	}

1336
	fmr = ib_fmr_pool_map_phys(ch->fmr_pool, state->pages,
1337 1338 1339
				   state->npages, io_addr);
	if (IS_ERR(fmr))
		return PTR_ERR(fmr);
1340

1341
	*state->fmr.next++ = fmr;
1342
	state->nmdesc++;
1343

1344 1345
	srp_map_desc(state, state->base_dma_addr & ~dev->mr_page_mask,
		     state->dma_len, fmr->fmr->rkey);
1346

S
Sagi Grimberg 已提交
1347 1348 1349 1350
reset_state:
	state->npages = 0;
	state->dma_len = 0;

1351 1352 1353
	return 0;
}

C
Christoph Hellwig 已提交
1354 1355 1356 1357 1358
static void srp_reg_mr_err_done(struct ib_cq *cq, struct ib_wc *wc)
{
	srp_handle_qp_err(cq, wc, "FAST REG");
}

1359 1360 1361 1362 1363 1364
/*
 * Map up to sg_nents elements of state->sg where *sg_offset_p is the offset
 * where to start in the first element. If sg_offset_p != NULL then
 * *sg_offset_p is updated to the offset in state->sg[retval] of the first
 * byte that has not yet been mapped.
 */
1365
static int srp_map_finish_fr(struct srp_map_state *state,
C
Christoph Hellwig 已提交
1366
			     struct srp_request *req,
1367 1368
			     struct srp_rdma_ch *ch, int sg_nents,
			     unsigned int *sg_offset_p)
1369
{
1370
	struct srp_target_port *target = ch->target;
1371 1372
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_send_wr *bad_wr;
1373
	struct ib_reg_wr wr;
1374 1375
	struct srp_fr_desc *desc;
	u32 rkey;
1376
	int n, err;
1377

1378 1379 1380 1381
	if (state->fr.next >= state->fr.end) {
		shost_printk(KERN_ERR, ch->target->scsi_host,
			     PFX "Out of MRs (mr_per_cmd = %d)\n",
			     ch->target->mr_per_cmd);
1382
		return -ENOMEM;
1383
	}
1384

S
Sagi Grimberg 已提交
1385 1386
	WARN_ON_ONCE(!dev->use_fast_reg);

B
Bart Van Assche 已提交
1387
	if (sg_nents == 1 && target->global_rkey) {
1388 1389 1390 1391
		unsigned int sg_offset = sg_offset_p ? *sg_offset_p : 0;

		srp_map_desc(state, sg_dma_address(state->sg) + sg_offset,
			     sg_dma_len(state->sg) - sg_offset,
B
Bart Van Assche 已提交
1392
			     target->global_rkey);
1393 1394
		if (sg_offset_p)
			*sg_offset_p = 0;
1395
		return 1;
S
Sagi Grimberg 已提交
1396 1397
	}

1398
	desc = srp_fr_pool_get(ch->fr_pool);
1399 1400 1401 1402 1403 1404
	if (!desc)
		return -ENOMEM;

	rkey = ib_inc_rkey(desc->mr->rkey);
	ib_update_fast_reg_key(desc->mr, rkey);

1405 1406
	n = ib_map_mr_sg(desc->mr, state->sg, sg_nents, sg_offset_p,
			 dev->mr_page_size);
1407 1408
	if (unlikely(n < 0)) {
		srp_fr_pool_put(ch->fr_pool, &desc, 1);
1409
		pr_debug("%s: ib_map_mr_sg(%d, %d) returned %d.\n",
1410
			 dev_name(&req->scmnd->device->sdev_gendev), sg_nents,
1411
			 sg_offset_p ? *sg_offset_p : -1, n);
1412
		return n;
1413
	}
1414

1415
	WARN_ON_ONCE(desc->mr->length == 0);
1416

C
Christoph Hellwig 已提交
1417 1418
	req->reg_cqe.done = srp_reg_mr_err_done;

1419 1420
	wr.wr.next = NULL;
	wr.wr.opcode = IB_WR_REG_MR;
C
Christoph Hellwig 已提交
1421
	wr.wr.wr_cqe = &req->reg_cqe;
1422 1423 1424 1425 1426 1427 1428
	wr.wr.num_sge = 0;
	wr.wr.send_flags = 0;
	wr.mr = desc->mr;
	wr.key = desc->mr->rkey;
	wr.access = (IB_ACCESS_LOCAL_WRITE |
		     IB_ACCESS_REMOTE_READ |
		     IB_ACCESS_REMOTE_WRITE);
1429

1430
	*state->fr.next++ = desc;
1431 1432
	state->nmdesc++;

1433 1434
	srp_map_desc(state, desc->mr->iova,
		     desc->mr->length, desc->mr->rkey);
1435

S
Sagi Grimberg 已提交
1436
	err = ib_post_send(ch->qp, &wr.wr, &bad_wr);
1437 1438
	if (unlikely(err)) {
		WARN_ON_ONCE(err == -ENOMEM);
S
Sagi Grimberg 已提交
1439
		return err;
1440
	}
S
Sagi Grimberg 已提交
1441

1442
	return n;
1443 1444
}

1445
static int srp_map_sg_entry(struct srp_map_state *state,
1446
			    struct srp_rdma_ch *ch,
1447
			    struct scatterlist *sg)
1448
{
1449
	struct srp_target_port *target = ch->target;
1450 1451 1452 1453
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = dev->dev;
	dma_addr_t dma_addr = ib_sg_dma_address(ibdev, sg);
	unsigned int dma_len = ib_sg_dma_len(ibdev, sg);
1454
	unsigned int len = 0;
1455 1456
	int ret;

1457
	WARN_ON_ONCE(!dma_len);
1458

1459
	while (dma_len) {
1460
		unsigned offset = dma_addr & ~dev->mr_page_mask;
1461 1462 1463

		if (state->npages == dev->max_pages_per_mr ||
		    (state->npages > 0 && offset != 0)) {
1464
			ret = srp_map_finish_fmr(state, ch);
1465 1466 1467 1468
			if (ret)
				return ret;
		}

1469
		len = min_t(unsigned int, dma_len, dev->mr_page_size - offset);
1470

1471 1472
		if (!state->npages)
			state->base_dma_addr = dma_addr;
1473
		state->pages[state->npages++] = dma_addr & dev->mr_page_mask;
1474
		state->dma_len += len;
1475 1476 1477 1478
		dma_addr += len;
		dma_len -= len;
	}

1479
	/*
1480
	 * If the end of the MR is not on a page boundary then we need to
1481
	 * close it out and start a new one -- we can only merge at page
1482
	 * boundaries.
1483 1484
	 */
	ret = 0;
1485
	if ((dma_addr & ~dev->mr_page_mask) != 0)
1486
		ret = srp_map_finish_fmr(state, ch);
1487 1488 1489
	return ret;
}

S
Sagi Grimberg 已提交
1490 1491 1492
static int srp_map_sg_fmr(struct srp_map_state *state, struct srp_rdma_ch *ch,
			  struct srp_request *req, struct scatterlist *scat,
			  int count)
1493 1494
{
	struct scatterlist *sg;
1495
	int i, ret;
1496

S
Sagi Grimberg 已提交
1497 1498
	state->pages = req->map_page;
	state->fmr.next = req->fmr_list;
1499
	state->fmr.end = req->fmr_list + ch->target->mr_per_cmd;
S
Sagi Grimberg 已提交
1500 1501

	for_each_sg(scat, sg, count, i) {
1502
		ret = srp_map_sg_entry(state, ch, sg);
S
Sagi Grimberg 已提交
1503 1504
		if (ret)
			return ret;
1505
	}
1506

1507
	ret = srp_map_finish_fmr(state, ch);
S
Sagi Grimberg 已提交
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
	if (ret)
		return ret;

	return 0;
}

static int srp_map_sg_fr(struct srp_map_state *state, struct srp_rdma_ch *ch,
			 struct srp_request *req, struct scatterlist *scat,
			 int count)
{
1518 1519
	unsigned int sg_offset = 0;

1520
	state->fr.next = req->fr_list;
1521
	state->fr.end = req->fr_list + ch->target->mr_per_cmd;
1522
	state->sg = scat;
S
Sagi Grimberg 已提交
1523

1524 1525 1526
	if (count == 0)
		return 0;

B
Bart Van Assche 已提交
1527
	while (count) {
1528
		int i, n;
S
Sagi Grimberg 已提交
1529

1530
		n = srp_map_finish_fr(state, req, ch, count, &sg_offset);
1531 1532 1533
		if (unlikely(n < 0))
			return n;

B
Bart Van Assche 已提交
1534
		count -= n;
1535 1536 1537
		for (i = 0; i < n; i++)
			state->sg = sg_next(state->sg);
	}
S
Sagi Grimberg 已提交
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553

	return 0;
}

static int srp_map_sg_dma(struct srp_map_state *state, struct srp_rdma_ch *ch,
			  struct srp_request *req, struct scatterlist *scat,
			  int count)
{
	struct srp_target_port *target = ch->target;
	struct srp_device *dev = target->srp_host->srp_dev;
	struct scatterlist *sg;
	int i;

	for_each_sg(scat, sg, count, i) {
		srp_map_desc(state, ib_sg_dma_address(dev->dev, sg),
			     ib_sg_dma_len(dev->dev, sg),
B
Bart Van Assche 已提交
1554
			     target->global_rkey);
1555
	}
1556

S
Sagi Grimberg 已提交
1557
	return 0;
1558 1559
}

1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
/*
 * Register the indirect data buffer descriptor with the HCA.
 *
 * Note: since the indirect data buffer descriptor has been allocated with
 * kmalloc() it is guaranteed that this buffer is a physically contiguous
 * memory buffer.
 */
static int srp_map_idb(struct srp_rdma_ch *ch, struct srp_request *req,
		       void **next_mr, void **end_mr, u32 idb_len,
		       __be32 *idb_rkey)
{
	struct srp_target_port *target = ch->target;
	struct srp_device *dev = target->srp_host->srp_dev;
	struct srp_map_state state;
	struct srp_direct_buf idb_desc;
	u64 idb_pages[1];
1576
	struct scatterlist idb_sg[1];
1577 1578 1579 1580 1581 1582 1583 1584 1585
	int ret;

	memset(&state, 0, sizeof(state));
	memset(&idb_desc, 0, sizeof(idb_desc));
	state.gen.next = next_mr;
	state.gen.end = end_mr;
	state.desc = &idb_desc;
	state.base_dma_addr = req->indirect_dma_addr;
	state.dma_len = idb_len;
1586 1587 1588

	if (dev->use_fast_reg) {
		state.sg = idb_sg;
1589
		sg_init_one(idb_sg, req->indirect_desc, idb_len);
1590
		idb_sg->dma_address = req->indirect_dma_addr; /* hack! */
1591 1592 1593
#ifdef CONFIG_NEED_SG_DMA_LENGTH
		idb_sg->dma_length = idb_sg->length;	      /* hack^2 */
#endif
1594
		ret = srp_map_finish_fr(&state, req, ch, 1, NULL);
1595 1596
		if (ret < 0)
			return ret;
1597
		WARN_ON_ONCE(ret < 1);
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
	} else if (dev->use_fmr) {
		state.pages = idb_pages;
		state.pages[0] = (req->indirect_dma_addr &
				  dev->mr_page_mask);
		state.npages = 1;
		ret = srp_map_finish_fmr(&state, ch);
		if (ret < 0)
			return ret;
	} else {
		return -EINVAL;
	}
1609 1610 1611

	*idb_rkey = idb_desc.key;

1612
	return 0;
1613 1614
}

1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
static void srp_check_mapping(struct srp_map_state *state,
			      struct srp_rdma_ch *ch, struct srp_request *req,
			      struct scatterlist *scat, int count)
{
	struct srp_device *dev = ch->target->srp_host->srp_dev;
	struct srp_fr_desc **pfr;
	u64 desc_len = 0, mr_len = 0;
	int i;

	for (i = 0; i < state->ndesc; i++)
		desc_len += be32_to_cpu(req->indirect_desc[i].len);
	if (dev->use_fast_reg)
		for (i = 0, pfr = req->fr_list; i < state->nmdesc; i++, pfr++)
			mr_len += (*pfr)->mr->length;
	else if (dev->use_fmr)
		for (i = 0; i < state->nmdesc; i++)
			mr_len += be32_to_cpu(req->indirect_desc[i].len);
	if (desc_len != scsi_bufflen(req->scmnd) ||
	    mr_len > scsi_bufflen(req->scmnd))
		pr_err("Inconsistent: scsi len %d <> desc len %lld <> mr len %lld; ndesc %d; nmdesc = %d\n",
		       scsi_bufflen(req->scmnd), desc_len, mr_len,
		       state->ndesc, state->nmdesc);
}

1639 1640 1641 1642 1643 1644 1645 1646 1647
/**
 * srp_map_data() - map SCSI data buffer onto an SRP request
 * @scmnd: SCSI command to map
 * @ch: SRP RDMA channel
 * @req: SRP request
 *
 * Returns the length in bytes of the SRP_CMD IU or a negative value if
 * mapping failed.
 */
1648
static int srp_map_data(struct scsi_cmnd *scmnd, struct srp_rdma_ch *ch,
1649 1650
			struct srp_request *req)
{
1651
	struct srp_target_port *target = ch->target;
1652
	struct scatterlist *scat;
1653
	struct srp_cmd *cmd = req->cmd->buf;
1654
	int len, nents, count, ret;
1655 1656
	struct srp_device *dev;
	struct ib_device *ibdev;
1657 1658
	struct srp_map_state state;
	struct srp_indirect_buf *indirect_hdr;
1659 1660
	u32 idb_len, table_len;
	__be32 idb_rkey;
1661
	u8 fmt;
1662

1663
	if (!scsi_sglist(scmnd) || scmnd->sc_data_direction == DMA_NONE)
1664 1665 1666 1667
		return sizeof (struct srp_cmd);

	if (scmnd->sc_data_direction != DMA_FROM_DEVICE &&
	    scmnd->sc_data_direction != DMA_TO_DEVICE) {
1668 1669 1670
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled data direction %d\n",
			     scmnd->sc_data_direction);
1671 1672 1673
		return -EINVAL;
	}

1674 1675
	nents = scsi_sg_count(scmnd);
	scat  = scsi_sglist(scmnd);
1676

1677
	dev = target->srp_host->srp_dev;
1678 1679 1680
	ibdev = dev->dev;

	count = ib_dma_map_sg(ibdev, scat, nents, scmnd->sc_data_direction);
1681 1682
	if (unlikely(count == 0))
		return -EIO;
1683 1684 1685

	fmt = SRP_DATA_DESC_DIRECT;
	len = sizeof (struct srp_cmd) +	sizeof (struct srp_direct_buf);
1686

B
Bart Van Assche 已提交
1687
	if (count == 1 && target->global_rkey) {
1688 1689 1690 1691 1692 1693
		/*
		 * The midlayer only generated a single gather/scatter
		 * entry, or DMA mapping coalesced everything to a
		 * single entry.  So a direct descriptor along with
		 * the DMA MR suffices.
		 */
1694
		struct srp_direct_buf *buf = (void *) cmd->add_data;
1695

1696
		buf->va  = cpu_to_be64(ib_sg_dma_address(ibdev, scat));
B
Bart Van Assche 已提交
1697
		buf->key = cpu_to_be32(target->global_rkey);
1698
		buf->len = cpu_to_be32(ib_sg_dma_len(ibdev, scat));
1699

1700
		req->nmdesc = 0;
1701 1702 1703
		goto map_complete;
	}

1704 1705 1706
	/*
	 * We have more than one scatter/gather entry, so build our indirect
	 * descriptor table, trying to merge as many entries as we can.
1707 1708 1709
	 */
	indirect_hdr = (void *) cmd->add_data;

1710 1711 1712
	ib_dma_sync_single_for_cpu(ibdev, req->indirect_dma_addr,
				   target->indirect_size, DMA_TO_DEVICE);

1713
	memset(&state, 0, sizeof(state));
B
Bart Van Assche 已提交
1714
	state.desc = req->indirect_desc;
S
Sagi Grimberg 已提交
1715
	if (dev->use_fast_reg)
1716
		ret = srp_map_sg_fr(&state, ch, req, scat, count);
S
Sagi Grimberg 已提交
1717
	else if (dev->use_fmr)
1718
		ret = srp_map_sg_fmr(&state, ch, req, scat, count);
S
Sagi Grimberg 已提交
1719
	else
1720 1721 1722 1723
		ret = srp_map_sg_dma(&state, ch, req, scat, count);
	req->nmdesc = state.nmdesc;
	if (ret < 0)
		goto unmap;
1724

1725 1726 1727
	{
		DEFINE_DYNAMIC_DEBUG_METADATA(ddm,
			"Memory mapping consistency check");
1728
		if (DYNAMIC_DEBUG_BRANCH(ddm))
1729 1730
			srp_check_mapping(&state, ch, req, scat, count);
	}
1731

1732 1733 1734 1735 1736
	/* We've mapped the request, now pull as much of the indirect
	 * descriptor table as we can into the command buffer. If this
	 * target is not using an external indirect table, we are
	 * guaranteed to fit into the command, as the SCSI layer won't
	 * give us more S/G entries than we allow.
1737 1738
	 */
	if (state.ndesc == 1) {
1739 1740
		/*
		 * Memory registration collapsed the sg-list into one entry,
1741 1742 1743
		 * so use a direct descriptor.
		 */
		struct srp_direct_buf *buf = (void *) cmd->add_data;
1744

1745
		*buf = req->indirect_desc[0];
1746
		goto map_complete;
1747 1748
	}

1749 1750 1751 1752
	if (unlikely(target->cmd_sg_cnt < state.ndesc &&
						!target->allow_ext_sg)) {
		shost_printk(KERN_ERR, target->scsi_host,
			     "Could not fit S/G list into SRP_CMD\n");
1753 1754
		ret = -EIO;
		goto unmap;
1755 1756 1757
	}

	count = min(state.ndesc, target->cmd_sg_cnt);
1758
	table_len = state.ndesc * sizeof (struct srp_direct_buf);
1759
	idb_len = sizeof(struct srp_indirect_buf) + table_len;
1760 1761 1762

	fmt = SRP_DATA_DESC_INDIRECT;
	len = sizeof(struct srp_cmd) + sizeof (struct srp_indirect_buf);
1763
	len += count * sizeof (struct srp_direct_buf);
1764

1765 1766
	memcpy(indirect_hdr->desc_list, req->indirect_desc,
	       count * sizeof (struct srp_direct_buf));
1767

B
Bart Van Assche 已提交
1768
	if (!target->global_rkey) {
1769 1770 1771
		ret = srp_map_idb(ch, req, state.gen.next, state.gen.end,
				  idb_len, &idb_rkey);
		if (ret < 0)
1772
			goto unmap;
1773 1774
		req->nmdesc++;
	} else {
B
Bart Van Assche 已提交
1775
		idb_rkey = cpu_to_be32(target->global_rkey);
1776 1777
	}

1778
	indirect_hdr->table_desc.va = cpu_to_be64(req->indirect_dma_addr);
1779
	indirect_hdr->table_desc.key = idb_rkey;
1780 1781 1782 1783
	indirect_hdr->table_desc.len = cpu_to_be32(table_len);
	indirect_hdr->len = cpu_to_be32(state.total_len);

	if (scmnd->sc_data_direction == DMA_TO_DEVICE)
1784
		cmd->data_out_desc_cnt = count;
1785
	else
1786 1787 1788 1789
		cmd->data_in_desc_cnt = count;

	ib_dma_sync_single_for_device(ibdev, req->indirect_dma_addr, table_len,
				      DMA_TO_DEVICE);
1790 1791

map_complete:
1792 1793 1794 1795 1796 1797
	if (scmnd->sc_data_direction == DMA_TO_DEVICE)
		cmd->buf_fmt = fmt << 4;
	else
		cmd->buf_fmt = fmt;

	return len;
1798 1799 1800

unmap:
	srp_unmap_data(scmnd, ch, req);
1801 1802
	if (ret == -ENOMEM && req->nmdesc >= target->mr_pool_size)
		ret = -E2BIG;
1803
	return ret;
1804 1805
}

1806 1807 1808
/*
 * Return an IU and possible credit to the free pool
 */
1809
static void srp_put_tx_iu(struct srp_rdma_ch *ch, struct srp_iu *iu,
1810 1811 1812 1813
			  enum srp_iu_type iu_type)
{
	unsigned long flags;

1814 1815
	spin_lock_irqsave(&ch->lock, flags);
	list_add(&iu->list, &ch->free_tx);
1816
	if (iu_type != SRP_IU_RSP)
1817 1818
		++ch->req_lim;
	spin_unlock_irqrestore(&ch->lock, flags);
1819 1820
}

1821
/*
1822
 * Must be called with ch->lock held to protect req_lim and free_tx.
1823
 * If IU is not sent, it must be returned using srp_put_tx_iu().
1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
 *
 * Note:
 * An upper limit for the number of allocated information units for each
 * request type is:
 * - SRP_IU_CMD: SRP_CMD_SQ_SIZE, since the SCSI mid-layer never queues
 *   more than Scsi_Host.can_queue requests.
 * - SRP_IU_TSK_MGMT: SRP_TSK_MGMT_SQ_SIZE.
 * - SRP_IU_RSP: 1, since a conforming SRP target never sends more than
 *   one unanswered SRP request to an initiator.
 */
1834
static struct srp_iu *__srp_get_tx_iu(struct srp_rdma_ch *ch,
1835 1836
				      enum srp_iu_type iu_type)
{
1837
	struct srp_target_port *target = ch->target;
1838 1839 1840
	s32 rsv = (iu_type == SRP_IU_TSK_MGMT) ? 0 : SRP_TSK_MGMT_SQ_SIZE;
	struct srp_iu *iu;

1841 1842
	lockdep_assert_held(&ch->lock);

C
Christoph Hellwig 已提交
1843
	ib_process_cq_direct(ch->send_cq, -1);
1844

1845
	if (list_empty(&ch->free_tx))
1846 1847 1848
		return NULL;

	/* Initiator responses to target requests do not consume credits */
1849
	if (iu_type != SRP_IU_RSP) {
1850
		if (ch->req_lim <= rsv) {
1851 1852 1853 1854
			++target->zero_req_lim;
			return NULL;
		}

1855
		--ch->req_lim;
1856 1857
	}

1858
	iu = list_first_entry(&ch->free_tx, struct srp_iu, list);
1859
	list_del(&iu->list);
1860 1861 1862
	return iu;
}

1863 1864 1865 1866 1867
/*
 * Note: if this function is called from inside ib_drain_sq() then it will
 * be called without ch->lock being held. If ib_drain_sq() dequeues a WQE
 * with status IB_WC_SUCCESS then that's a bug.
 */
C
Christoph Hellwig 已提交
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877
static void srp_send_done(struct ib_cq *cq, struct ib_wc *wc)
{
	struct srp_iu *iu = container_of(wc->wr_cqe, struct srp_iu, cqe);
	struct srp_rdma_ch *ch = cq->cq_context;

	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		srp_handle_qp_err(cq, wc, "SEND");
		return;
	}

1878 1879
	lockdep_assert_held(&ch->lock);

C
Christoph Hellwig 已提交
1880 1881 1882
	list_add(&iu->list, &ch->free_tx);
}

1883
static int srp_post_send(struct srp_rdma_ch *ch, struct srp_iu *iu, int len)
1884
{
1885
	struct srp_target_port *target = ch->target;
1886 1887 1888 1889 1890
	struct ib_sge list;
	struct ib_send_wr wr, *bad_wr;

	list.addr   = iu->dma;
	list.length = len;
1891
	list.lkey   = target->lkey;
1892

C
Christoph Hellwig 已提交
1893 1894
	iu->cqe.done = srp_send_done;

1895
	wr.next       = NULL;
C
Christoph Hellwig 已提交
1896
	wr.wr_cqe     = &iu->cqe;
1897 1898 1899 1900 1901
	wr.sg_list    = &list;
	wr.num_sge    = 1;
	wr.opcode     = IB_WR_SEND;
	wr.send_flags = IB_SEND_SIGNALED;

1902
	return ib_post_send(ch->qp, &wr, &bad_wr);
1903 1904
}

1905
static int srp_post_recv(struct srp_rdma_ch *ch, struct srp_iu *iu)
1906
{
1907
	struct srp_target_port *target = ch->target;
1908
	struct ib_recv_wr wr, *bad_wr;
1909
	struct ib_sge list;
1910 1911 1912

	list.addr   = iu->dma;
	list.length = iu->size;
1913
	list.lkey   = target->lkey;
1914

C
Christoph Hellwig 已提交
1915 1916
	iu->cqe.done = srp_recv_done;

1917
	wr.next     = NULL;
C
Christoph Hellwig 已提交
1918
	wr.wr_cqe   = &iu->cqe;
1919 1920 1921
	wr.sg_list  = &list;
	wr.num_sge  = 1;

1922
	return ib_post_recv(ch->qp, &wr, &bad_wr);
1923 1924
}

1925
static void srp_process_rsp(struct srp_rdma_ch *ch, struct srp_rsp *rsp)
1926
{
1927
	struct srp_target_port *target = ch->target;
1928 1929 1930 1931 1932
	struct srp_request *req;
	struct scsi_cmnd *scmnd;
	unsigned long flags;

	if (unlikely(rsp->tag & SRP_TAG_TSK_MGMT)) {
1933 1934
		spin_lock_irqsave(&ch->lock, flags);
		ch->req_lim += be32_to_cpu(rsp->req_lim_delta);
1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
		if (rsp->tag == ch->tsk_mgmt_tag) {
			ch->tsk_mgmt_status = -1;
			if (be32_to_cpu(rsp->resp_data_len) >= 4)
				ch->tsk_mgmt_status = rsp->data[3];
			complete(&ch->tsk_mgmt_done);
		} else {
			shost_printk(KERN_ERR, target->scsi_host,
				     "Received tsk mgmt response too late for tag %#llx\n",
				     rsp->tag);
		}
1945
		spin_unlock_irqrestore(&ch->lock, flags);
1946
	} else {
B
Bart Van Assche 已提交
1947
		scmnd = scsi_host_find_tag(target->scsi_host, rsp->tag);
1948
		if (scmnd && scmnd->host_scribble) {
B
Bart Van Assche 已提交
1949 1950
			req = (void *)scmnd->host_scribble;
			scmnd = srp_claim_req(ch, req, NULL, scmnd);
1951 1952
		} else {
			scmnd = NULL;
B
Bart Van Assche 已提交
1953
		}
B
Bart Van Assche 已提交
1954
		if (!scmnd) {
1955
			shost_printk(KERN_ERR, target->scsi_host,
B
Bart Van Assche 已提交
1956 1957
				     "Null scmnd for RSP w/tag %#016llx received on ch %td / QP %#x\n",
				     rsp->tag, ch - target->ch, ch->qp->qp_num);
B
Bart Van Assche 已提交
1958

1959 1960 1961
			spin_lock_irqsave(&ch->lock, flags);
			ch->req_lim += be32_to_cpu(rsp->req_lim_delta);
			spin_unlock_irqrestore(&ch->lock, flags);
B
Bart Van Assche 已提交
1962 1963 1964

			return;
		}
1965 1966 1967 1968 1969 1970 1971 1972 1973
		scmnd->result = rsp->status;

		if (rsp->flags & SRP_RSP_FLAG_SNSVALID) {
			memcpy(scmnd->sense_buffer, rsp->data +
			       be32_to_cpu(rsp->resp_data_len),
			       min_t(int, be32_to_cpu(rsp->sense_data_len),
				     SCSI_SENSE_BUFFERSIZE));
		}

B
Bart Van Assche 已提交
1974
		if (unlikely(rsp->flags & SRP_RSP_FLAG_DIUNDER))
1975
			scsi_set_resid(scmnd, be32_to_cpu(rsp->data_in_res_cnt));
B
Bart Van Assche 已提交
1976 1977 1978 1979 1980 1981
		else if (unlikely(rsp->flags & SRP_RSP_FLAG_DIOVER))
			scsi_set_resid(scmnd, -be32_to_cpu(rsp->data_in_res_cnt));
		else if (unlikely(rsp->flags & SRP_RSP_FLAG_DOUNDER))
			scsi_set_resid(scmnd, be32_to_cpu(rsp->data_out_res_cnt));
		else if (unlikely(rsp->flags & SRP_RSP_FLAG_DOOVER))
			scsi_set_resid(scmnd, -be32_to_cpu(rsp->data_out_res_cnt));
1982

1983
		srp_free_req(ch, req, scmnd,
B
Bart Van Assche 已提交
1984 1985
			     be32_to_cpu(rsp->req_lim_delta));

1986 1987
		scmnd->host_scribble = NULL;
		scmnd->scsi_done(scmnd);
1988 1989 1990
	}
}

1991
static int srp_response_common(struct srp_rdma_ch *ch, s32 req_delta,
1992 1993
			       void *rsp, int len)
{
1994
	struct srp_target_port *target = ch->target;
1995
	struct ib_device *dev = target->srp_host->srp_dev->dev;
1996 1997
	unsigned long flags;
	struct srp_iu *iu;
1998
	int err;
1999

2000 2001 2002 2003
	spin_lock_irqsave(&ch->lock, flags);
	ch->req_lim += req_delta;
	iu = __srp_get_tx_iu(ch, SRP_IU_RSP);
	spin_unlock_irqrestore(&ch->lock, flags);
2004

2005 2006 2007
	if (!iu) {
		shost_printk(KERN_ERR, target->scsi_host, PFX
			     "no IU available to send response\n");
2008
		return 1;
2009 2010 2011 2012 2013 2014
	}

	ib_dma_sync_single_for_cpu(dev, iu->dma, len, DMA_TO_DEVICE);
	memcpy(iu->buf, rsp, len);
	ib_dma_sync_single_for_device(dev, iu->dma, len, DMA_TO_DEVICE);

2015
	err = srp_post_send(ch, iu, len);
2016
	if (err) {
2017 2018
		shost_printk(KERN_ERR, target->scsi_host, PFX
			     "unable to post response: %d\n", err);
2019
		srp_put_tx_iu(ch, iu, SRP_IU_RSP);
2020
	}
2021 2022 2023 2024

	return err;
}

2025
static void srp_process_cred_req(struct srp_rdma_ch *ch,
2026 2027 2028 2029 2030 2031 2032 2033
				 struct srp_cred_req *req)
{
	struct srp_cred_rsp rsp = {
		.opcode = SRP_CRED_RSP,
		.tag = req->tag,
	};
	s32 delta = be32_to_cpu(req->req_lim_delta);

2034 2035
	if (srp_response_common(ch, delta, &rsp, sizeof(rsp)))
		shost_printk(KERN_ERR, ch->target->scsi_host, PFX
2036 2037 2038
			     "problems processing SRP_CRED_REQ\n");
}

2039
static void srp_process_aer_req(struct srp_rdma_ch *ch,
2040 2041
				struct srp_aer_req *req)
{
2042
	struct srp_target_port *target = ch->target;
2043 2044 2045 2046 2047 2048 2049
	struct srp_aer_rsp rsp = {
		.opcode = SRP_AER_RSP,
		.tag = req->tag,
	};
	s32 delta = be32_to_cpu(req->req_lim_delta);

	shost_printk(KERN_ERR, target->scsi_host, PFX
B
Bart Van Assche 已提交
2050
		     "ignoring AER for LUN %llu\n", scsilun_to_int(&req->lun));
2051

2052
	if (srp_response_common(ch, delta, &rsp, sizeof(rsp)))
2053 2054 2055 2056
		shost_printk(KERN_ERR, target->scsi_host, PFX
			     "problems processing SRP_AER_REQ\n");
}

C
Christoph Hellwig 已提交
2057
static void srp_recv_done(struct ib_cq *cq, struct ib_wc *wc)
2058
{
C
Christoph Hellwig 已提交
2059 2060
	struct srp_iu *iu = container_of(wc->wr_cqe, struct srp_iu, cqe);
	struct srp_rdma_ch *ch = cq->cq_context;
2061
	struct srp_target_port *target = ch->target;
2062
	struct ib_device *dev = target->srp_host->srp_dev->dev;
2063
	int res;
2064 2065
	u8 opcode;

C
Christoph Hellwig 已提交
2066 2067 2068 2069 2070
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		srp_handle_qp_err(cq, wc, "RECV");
		return;
	}

2071
	ib_dma_sync_single_for_cpu(dev, iu->dma, ch->max_ti_iu_len,
2072
				   DMA_FROM_DEVICE);
2073 2074 2075 2076

	opcode = *(u8 *) iu->buf;

	if (0) {
2077 2078
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "recv completion, opcode 0x%02x\n", opcode);
B
Bart Van Assche 已提交
2079 2080
		print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 8, 1,
			       iu->buf, wc->byte_len, true);
2081 2082 2083 2084
	}

	switch (opcode) {
	case SRP_RSP:
2085
		srp_process_rsp(ch, iu->buf);
2086 2087
		break;

2088
	case SRP_CRED_REQ:
2089
		srp_process_cred_req(ch, iu->buf);
2090 2091 2092
		break;

	case SRP_AER_REQ:
2093
		srp_process_aer_req(ch, iu->buf);
2094 2095
		break;

2096 2097
	case SRP_T_LOGOUT:
		/* XXX Handle target logout */
2098 2099
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Got target logout request\n");
2100 2101 2102
		break;

	default:
2103 2104
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled SRP opcode 0x%02x\n", opcode);
2105 2106 2107
		break;
	}

2108
	ib_dma_sync_single_for_device(dev, iu->dma, ch->max_ti_iu_len,
2109
				      DMA_FROM_DEVICE);
2110

2111
	res = srp_post_recv(ch, iu);
2112 2113 2114
	if (res != 0)
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "Recv failed with error code %d\n", res);
2115 2116
}

2117 2118
/**
 * srp_tl_err_work() - handle a transport layer error
2119
 * @work: Work structure embedded in an SRP target port.
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
 *
 * Note: This function may get invoked before the rport has been created,
 * hence the target->rport test.
 */
static void srp_tl_err_work(struct work_struct *work)
{
	struct srp_target_port *target;

	target = container_of(work, struct srp_target_port, tl_err_work);
	if (target->rport)
		srp_start_tl_fail_timers(target->rport);
}

C
Christoph Hellwig 已提交
2133 2134
static void srp_handle_qp_err(struct ib_cq *cq, struct ib_wc *wc,
		const char *opname)
2135
{
C
Christoph Hellwig 已提交
2136
	struct srp_rdma_ch *ch = cq->cq_context;
2137 2138
	struct srp_target_port *target = ch->target;

2139
	if (ch->connected && !target->qp_in_error) {
C
Christoph Hellwig 已提交
2140 2141 2142 2143
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "failed %s status %s (%d) for CQE %p\n",
			     opname, ib_wc_status_msg(wc->status), wc->status,
			     wc->wr_cqe);
2144
		queue_work(system_long_wq, &target->tl_err_work);
2145
	}
2146 2147 2148
	target->qp_in_error = true;
}

2149
static int srp_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scmnd)
2150
{
2151
	struct srp_target_port *target = host_to_target(shost);
2152
	struct srp_rport *rport = target->rport;
2153
	struct srp_rdma_ch *ch;
2154 2155 2156
	struct srp_request *req;
	struct srp_iu *iu;
	struct srp_cmd *cmd;
2157
	struct ib_device *dev;
2158
	unsigned long flags;
B
Bart Van Assche 已提交
2159 2160
	u32 tag;
	u16 idx;
2161
	int len, ret;
2162 2163 2164 2165 2166 2167 2168 2169 2170 2171
	const bool in_scsi_eh = !in_interrupt() && current == shost->ehandler;

	/*
	 * The SCSI EH thread is the only context from which srp_queuecommand()
	 * can get invoked for blocked devices (SDEV_BLOCK /
	 * SDEV_CREATED_BLOCK). Avoid racing with srp_reconnect_rport() by
	 * locking the rport mutex if invoked from inside the SCSI EH.
	 */
	if (in_scsi_eh)
		mutex_lock(&rport->mutex);
2172

2173 2174 2175
	scmnd->result = srp_chkready(target->rport);
	if (unlikely(scmnd->result))
		goto err;
2176

B
Bart Van Assche 已提交
2177 2178
	WARN_ON_ONCE(scmnd->request->tag < 0);
	tag = blk_mq_unique_tag(scmnd->request);
B
Bart Van Assche 已提交
2179
	ch = &target->ch[blk_mq_unique_tag_to_hwq(tag)];
B
Bart Van Assche 已提交
2180 2181 2182 2183
	idx = blk_mq_unique_tag_to_tag(tag);
	WARN_ONCE(idx >= target->req_ring_size, "%s: tag %#x: idx %d >= %d\n",
		  dev_name(&shost->shost_gendev), tag, idx,
		  target->req_ring_size);
2184 2185 2186 2187

	spin_lock_irqsave(&ch->lock, flags);
	iu = __srp_get_tx_iu(ch, SRP_IU_CMD);
	spin_unlock_irqrestore(&ch->lock, flags);
2188

B
Bart Van Assche 已提交
2189 2190 2191 2192
	if (!iu)
		goto err;

	req = &ch->req_ring[idx];
2193
	dev = target->srp_host->srp_dev->dev;
2194
	ib_dma_sync_single_for_cpu(dev, iu->dma, target->max_iu_len,
2195
				   DMA_TO_DEVICE);
2196

2197
	scmnd->host_scribble = (void *) req;
2198 2199 2200 2201 2202

	cmd = iu->buf;
	memset(cmd, 0, sizeof *cmd);

	cmd->opcode = SRP_CMD;
B
Bart Van Assche 已提交
2203
	int_to_scsilun(scmnd->device->lun, &cmd->lun);
B
Bart Van Assche 已提交
2204
	cmd->tag    = tag;
2205 2206 2207 2208 2209
	memcpy(cmd->cdb, scmnd->cmnd, scmnd->cmd_len);

	req->scmnd    = scmnd;
	req->cmd      = iu;

2210
	len = srp_map_data(scmnd, ch, req);
2211
	if (len < 0) {
2212
		shost_printk(KERN_ERR, target->scsi_host,
2213 2214 2215 2216
			     PFX "Failed to map data (%d)\n", len);
		/*
		 * If we ran out of memory descriptors (-ENOMEM) because an
		 * application is queuing many requests with more than
2217
		 * max_pages_per_mr sg-list elements, tell the SCSI mid-layer
2218 2219 2220 2221
		 * to reduce queue depth temporarily.
		 */
		scmnd->result = len == -ENOMEM ?
			DID_OK << 16 | QUEUE_FULL << 1 : DID_ERROR << 16;
2222
		goto err_iu;
2223 2224
	}

2225
	ib_dma_sync_single_for_device(dev, iu->dma, target->max_iu_len,
2226
				      DMA_TO_DEVICE);
2227

2228
	if (srp_post_send(ch, iu, len)) {
2229
		shost_printk(KERN_ERR, target->scsi_host, PFX "Send failed\n");
2230 2231 2232
		goto err_unmap;
	}

2233 2234
	ret = 0;

2235 2236 2237 2238
unlock_rport:
	if (in_scsi_eh)
		mutex_unlock(&rport->mutex);

2239
	return ret;
2240 2241

err_unmap:
2242
	srp_unmap_data(scmnd, ch, req);
2243

2244
err_iu:
2245
	srp_put_tx_iu(ch, iu, SRP_IU_CMD);
2246

2247 2248 2249 2250 2251 2252
	/*
	 * Avoid that the loops that iterate over the request ring can
	 * encounter a dangling SCSI command pointer.
	 */
	req->scmnd = NULL;

2253 2254 2255 2256 2257 2258 2259
err:
	if (scmnd->result) {
		scmnd->scsi_done(scmnd);
		ret = 0;
	} else {
		ret = SCSI_MLQUEUE_HOST_BUSY;
	}
2260

2261
	goto unlock_rport;
2262 2263
}

2264 2265
/*
 * Note: the resources allocated in this function are freed in
2266
 * srp_free_ch_ib().
2267
 */
2268
static int srp_alloc_iu_bufs(struct srp_rdma_ch *ch)
2269
{
2270
	struct srp_target_port *target = ch->target;
2271 2272
	int i;

2273 2274 2275
	ch->rx_ring = kcalloc(target->queue_size, sizeof(*ch->rx_ring),
			      GFP_KERNEL);
	if (!ch->rx_ring)
2276
		goto err_no_ring;
2277 2278 2279
	ch->tx_ring = kcalloc(target->queue_size, sizeof(*ch->tx_ring),
			      GFP_KERNEL);
	if (!ch->tx_ring)
2280 2281 2282
		goto err_no_ring;

	for (i = 0; i < target->queue_size; ++i) {
2283 2284 2285 2286
		ch->rx_ring[i] = srp_alloc_iu(target->srp_host,
					      ch->max_ti_iu_len,
					      GFP_KERNEL, DMA_FROM_DEVICE);
		if (!ch->rx_ring[i])
2287 2288 2289
			goto err;
	}

2290
	for (i = 0; i < target->queue_size; ++i) {
2291 2292 2293 2294
		ch->tx_ring[i] = srp_alloc_iu(target->srp_host,
					      target->max_iu_len,
					      GFP_KERNEL, DMA_TO_DEVICE);
		if (!ch->tx_ring[i])
2295
			goto err;
2296

2297
		list_add(&ch->tx_ring[i]->list, &ch->free_tx);
2298 2299 2300 2301 2302
	}

	return 0;

err:
2303
	for (i = 0; i < target->queue_size; ++i) {
2304 2305
		srp_free_iu(target->srp_host, ch->rx_ring[i]);
		srp_free_iu(target->srp_host, ch->tx_ring[i]);
2306 2307
	}

2308 2309

err_no_ring:
2310 2311 2312 2313
	kfree(ch->tx_ring);
	ch->tx_ring = NULL;
	kfree(ch->rx_ring);
	ch->rx_ring = NULL;
2314

2315 2316 2317
	return -ENOMEM;
}

2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344
static uint32_t srp_compute_rq_tmo(struct ib_qp_attr *qp_attr, int attr_mask)
{
	uint64_t T_tr_ns, max_compl_time_ms;
	uint32_t rq_tmo_jiffies;

	/*
	 * According to section 11.2.4.2 in the IBTA spec (Modify Queue Pair,
	 * table 91), both the QP timeout and the retry count have to be set
	 * for RC QP's during the RTR to RTS transition.
	 */
	WARN_ON_ONCE((attr_mask & (IB_QP_TIMEOUT | IB_QP_RETRY_CNT)) !=
		     (IB_QP_TIMEOUT | IB_QP_RETRY_CNT));

	/*
	 * Set target->rq_tmo_jiffies to one second more than the largest time
	 * it can take before an error completion is generated. See also
	 * C9-140..142 in the IBTA spec for more information about how to
	 * convert the QP Local ACK Timeout value to nanoseconds.
	 */
	T_tr_ns = 4096 * (1ULL << qp_attr->timeout);
	max_compl_time_ms = qp_attr->retry_cnt * 4 * T_tr_ns;
	do_div(max_compl_time_ms, NSEC_PER_MSEC);
	rq_tmo_jiffies = msecs_to_jiffies(max_compl_time_ms + 1000);

	return rq_tmo_jiffies;
}

2345
static void srp_cm_rep_handler(struct ib_cm_id *cm_id,
2346
			       const struct srp_login_rsp *lrsp,
2347
			       struct srp_rdma_ch *ch)
2348
{
2349
	struct srp_target_port *target = ch->target;
2350 2351 2352 2353 2354 2355
	struct ib_qp_attr *qp_attr = NULL;
	int attr_mask = 0;
	int ret;
	int i;

	if (lrsp->opcode == SRP_LOGIN_RSP) {
2356 2357
		ch->max_ti_iu_len = be32_to_cpu(lrsp->max_ti_iu_len);
		ch->req_lim       = be32_to_cpu(lrsp->req_lim_delta);
2358 2359 2360 2361 2362 2363

		/*
		 * Reserve credits for task management so we don't
		 * bounce requests back to the SCSI mid-layer.
		 */
		target->scsi_host->can_queue
2364
			= min(ch->req_lim - SRP_TSK_MGMT_SQ_SIZE,
2365
			      target->scsi_host->can_queue);
2366 2367 2368
		target->scsi_host->cmd_per_lun
			= min_t(int, target->scsi_host->can_queue,
				target->scsi_host->cmd_per_lun);
2369 2370 2371 2372 2373 2374 2375
	} else {
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled RSP opcode %#x\n", lrsp->opcode);
		ret = -ECONNRESET;
		goto error;
	}

2376 2377
	if (!ch->rx_ring) {
		ret = srp_alloc_iu_bufs(ch);
2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
		if (ret)
			goto error;
	}

	ret = -ENOMEM;
	qp_attr = kmalloc(sizeof *qp_attr, GFP_KERNEL);
	if (!qp_attr)
		goto error;

	qp_attr->qp_state = IB_QPS_RTR;
	ret = ib_cm_init_qp_attr(cm_id, qp_attr, &attr_mask);
	if (ret)
		goto error_free;

2392
	ret = ib_modify_qp(ch->qp, qp_attr, attr_mask);
2393 2394 2395
	if (ret)
		goto error_free;

2396
	for (i = 0; i < target->queue_size; i++) {
2397 2398 2399
		struct srp_iu *iu = ch->rx_ring[i];

		ret = srp_post_recv(ch, iu);
2400 2401 2402 2403 2404 2405 2406 2407 2408
		if (ret)
			goto error_free;
	}

	qp_attr->qp_state = IB_QPS_RTS;
	ret = ib_cm_init_qp_attr(cm_id, qp_attr, &attr_mask);
	if (ret)
		goto error_free;

2409 2410
	target->rq_tmo_jiffies = srp_compute_rq_tmo(qp_attr, attr_mask);

2411
	ret = ib_modify_qp(ch->qp, qp_attr, attr_mask);
2412 2413 2414 2415 2416 2417 2418 2419 2420
	if (ret)
		goto error_free;

	ret = ib_send_cm_rtu(cm_id, NULL, 0);

error_free:
	kfree(qp_attr);

error:
2421
	ch->status = ret;
2422 2423
}

2424 2425
static void srp_cm_rej_handler(struct ib_cm_id *cm_id,
			       struct ib_cm_event *event,
2426
			       struct srp_rdma_ch *ch)
2427
{
2428
	struct srp_target_port *target = ch->target;
2429
	struct Scsi_Host *shost = target->scsi_host;
2430 2431 2432 2433 2434 2435
	struct ib_class_port_info *cpi;
	int opcode;

	switch (event->param.rej_rcvd.reason) {
	case IB_CM_REJ_PORT_CM_REDIRECT:
		cpi = event->param.rej_rcvd.ari;
2436
		sa_path_set_dlid(&ch->path, ntohs(cpi->redirect_lid));
2437
		ch->path.pkey = cpi->redirect_pkey;
2438
		cm_id->remote_cm_qpn = be32_to_cpu(cpi->redirect_qp) & 0x00ffffff;
2439
		memcpy(ch->path.dgid.raw, cpi->redirect_gid, 16);
2440

2441
		ch->status = sa_path_get_dlid(&ch->path) ?
2442 2443 2444 2445
			SRP_DLID_REDIRECT : SRP_PORT_REDIRECT;
		break;

	case IB_CM_REJ_PORT_REDIRECT:
2446
		if (srp_target_is_topspin(target)) {
2447 2448 2449 2450 2451
			/*
			 * Topspin/Cisco SRP gateways incorrectly send
			 * reject reason code 25 when they mean 24
			 * (port redirect).
			 */
2452
			memcpy(ch->path.dgid.raw,
2453 2454
			       event->param.rej_rcvd.ari, 16);

2455 2456
			shost_printk(KERN_DEBUG, shost,
				     PFX "Topspin/Cisco redirect to target port GID %016llx%016llx\n",
2457 2458
				     be64_to_cpu(ch->path.dgid.global.subnet_prefix),
				     be64_to_cpu(ch->path.dgid.global.interface_id));
2459

2460
			ch->status = SRP_PORT_REDIRECT;
2461
		} else {
2462 2463
			shost_printk(KERN_WARNING, shost,
				     "  REJ reason: IB_CM_REJ_PORT_REDIRECT\n");
2464
			ch->status = -ECONNRESET;
2465 2466 2467 2468
		}
		break;

	case IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID:
2469 2470
		shost_printk(KERN_WARNING, shost,
			    "  REJ reason: IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID\n");
2471
		ch->status = -ECONNRESET;
2472 2473 2474 2475 2476 2477 2478 2479 2480
		break;

	case IB_CM_REJ_CONSUMER_DEFINED:
		opcode = *(u8 *) event->private_data;
		if (opcode == SRP_LOGIN_REJ) {
			struct srp_login_rej *rej = event->private_data;
			u32 reason = be32_to_cpu(rej->reason);

			if (reason == SRP_LOGIN_REJ_REQ_IT_IU_LENGTH_TOO_LARGE)
2481 2482
				shost_printk(KERN_WARNING, shost,
					     PFX "SRP_LOGIN_REJ: requested max_it_iu_len too large\n");
2483
			else
B
Bart Van Assche 已提交
2484 2485
				shost_printk(KERN_WARNING, shost, PFX
					     "SRP LOGIN from %pI6 to %pI6 REJECTED, reason 0x%08x\n",
2486 2487
					     target->sgid.raw,
					     target->orig_dgid.raw, reason);
2488
		} else
2489 2490 2491
			shost_printk(KERN_WARNING, shost,
				     "  REJ reason: IB_CM_REJ_CONSUMER_DEFINED,"
				     " opcode 0x%02x\n", opcode);
2492
		ch->status = -ECONNRESET;
2493 2494
		break;

D
David Dillow 已提交
2495 2496
	case IB_CM_REJ_STALE_CONN:
		shost_printk(KERN_WARNING, shost, "  REJ reason: stale connection\n");
2497
		ch->status = SRP_STALE_CONN;
D
David Dillow 已提交
2498 2499
		break;

2500
	default:
2501 2502
		shost_printk(KERN_WARNING, shost, "  REJ reason 0x%x\n",
			     event->param.rej_rcvd.reason);
2503
		ch->status = -ECONNRESET;
2504 2505 2506 2507 2508
	}
}

static int srp_cm_handler(struct ib_cm_id *cm_id, struct ib_cm_event *event)
{
2509 2510
	struct srp_rdma_ch *ch = cm_id->context;
	struct srp_target_port *target = ch->target;
2511 2512 2513 2514
	int comp = 0;

	switch (event->event) {
	case IB_CM_REQ_ERROR:
2515 2516
		shost_printk(KERN_DEBUG, target->scsi_host,
			     PFX "Sending CM REQ failed\n");
2517
		comp = 1;
2518
		ch->status = -ECONNRESET;
2519 2520 2521 2522
		break;

	case IB_CM_REP_RECEIVED:
		comp = 1;
2523
		srp_cm_rep_handler(cm_id, event->private_data, ch);
2524 2525 2526
		break;

	case IB_CM_REJ_RECEIVED:
2527
		shost_printk(KERN_DEBUG, target->scsi_host, PFX "REJ received\n");
2528 2529
		comp = 1;

2530
		srp_cm_rej_handler(cm_id, event, ch);
2531 2532
		break;

2533
	case IB_CM_DREQ_RECEIVED:
2534 2535
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "DREQ received - connection closed\n");
2536
		ch->connected = false;
2537
		if (ib_send_cm_drep(cm_id, NULL, 0))
2538 2539
			shost_printk(KERN_ERR, target->scsi_host,
				     PFX "Sending CM DREP failed\n");
2540
		queue_work(system_long_wq, &target->tl_err_work);
2541 2542 2543
		break;

	case IB_CM_TIMEWAIT_EXIT:
2544 2545
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "connection closed\n");
2546
		comp = 1;
2547

2548
		ch->status = 0;
2549 2550
		break;

2551 2552 2553 2554 2555
	case IB_CM_MRA_RECEIVED:
	case IB_CM_DREQ_ERROR:
	case IB_CM_DREP_RECEIVED:
		break;

2556
	default:
2557 2558
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled CM event %d\n", event->event);
2559 2560 2561 2562
		break;
	}

	if (comp)
2563
		complete(&ch->done);
2564 2565 2566 2567

	return 0;
}

2568 2569 2570 2571 2572 2573 2574 2575
/**
 * srp_change_queue_depth - setting device queue depth
 * @sdev: scsi device struct
 * @qdepth: requested queue depth
 *
 * Returns queue depth.
 */
static int
2576
srp_change_queue_depth(struct scsi_device *sdev, int qdepth)
2577
{
2578
	if (!sdev->tagged_supported)
2579
		qdepth = 1;
2580
	return scsi_change_queue_depth(sdev, qdepth);
2581 2582
}

B
Bart Van Assche 已提交
2583
static int srp_send_tsk_mgmt(struct srp_rdma_ch *ch, u64 req_tag, u64 lun,
2584
			     u8 func, u8 *status)
2585
{
2586
	struct srp_target_port *target = ch->target;
2587
	struct srp_rport *rport = target->rport;
2588
	struct ib_device *dev = target->srp_host->srp_dev->dev;
2589 2590
	struct srp_iu *iu;
	struct srp_tsk_mgmt *tsk_mgmt;
2591
	int res;
2592

2593
	if (!ch->connected || target->qp_in_error)
2594 2595
		return -1;

2596
	/*
2597
	 * Lock the rport mutex to avoid that srp_create_ch_ib() is
2598 2599 2600
	 * invoked while a task management function is being sent.
	 */
	mutex_lock(&rport->mutex);
2601 2602 2603
	spin_lock_irq(&ch->lock);
	iu = __srp_get_tx_iu(ch, SRP_IU_TSK_MGMT);
	spin_unlock_irq(&ch->lock);
2604

2605 2606 2607
	if (!iu) {
		mutex_unlock(&rport->mutex);

2608
		return -1;
2609
	}
2610

2611 2612
	ib_dma_sync_single_for_cpu(dev, iu->dma, sizeof *tsk_mgmt,
				   DMA_TO_DEVICE);
2613 2614 2615 2616
	tsk_mgmt = iu->buf;
	memset(tsk_mgmt, 0, sizeof *tsk_mgmt);

	tsk_mgmt->opcode 	= SRP_TSK_MGMT;
B
Bart Van Assche 已提交
2617
	int_to_scsilun(lun, &tsk_mgmt->lun);
2618
	tsk_mgmt->tsk_mgmt_func = func;
2619
	tsk_mgmt->task_tag	= req_tag;
2620

2621 2622 2623 2624 2625 2626 2627
	spin_lock_irq(&ch->lock);
	ch->tsk_mgmt_tag = (ch->tsk_mgmt_tag + 1) | SRP_TAG_TSK_MGMT;
	tsk_mgmt->tag = ch->tsk_mgmt_tag;
	spin_unlock_irq(&ch->lock);

	init_completion(&ch->tsk_mgmt_done);

2628 2629
	ib_dma_sync_single_for_device(dev, iu->dma, sizeof *tsk_mgmt,
				      DMA_TO_DEVICE);
2630 2631
	if (srp_post_send(ch, iu, sizeof(*tsk_mgmt))) {
		srp_put_tx_iu(ch, iu, SRP_IU_TSK_MGMT);
2632 2633
		mutex_unlock(&rport->mutex);

2634 2635
		return -1;
	}
2636 2637 2638 2639
	res = wait_for_completion_timeout(&ch->tsk_mgmt_done,
					msecs_to_jiffies(SRP_ABORT_TIMEOUT_MS));
	if (res > 0 && status)
		*status = ch->tsk_mgmt_status;
2640
	mutex_unlock(&rport->mutex);
2641

2642
	WARN_ON_ONCE(res < 0);
2643

2644
	return res > 0 ? 0 : -1;
2645 2646
}

2647 2648
static int srp_abort(struct scsi_cmnd *scmnd)
{
2649
	struct srp_target_port *target = host_to_target(scmnd->device->host);
2650
	struct srp_request *req = (struct srp_request *) scmnd->host_scribble;
B
Bart Van Assche 已提交
2651
	u32 tag;
B
Bart Van Assche 已提交
2652
	u16 ch_idx;
2653
	struct srp_rdma_ch *ch;
2654
	int ret;
2655

2656
	shost_printk(KERN_ERR, target->scsi_host, "SRP abort called\n");
2657

B
Bart Van Assche 已提交
2658
	if (!req)
2659
		return SUCCESS;
B
Bart Van Assche 已提交
2660
	tag = blk_mq_unique_tag(scmnd->request);
B
Bart Van Assche 已提交
2661 2662 2663 2664 2665 2666 2667 2668
	ch_idx = blk_mq_unique_tag_to_hwq(tag);
	if (WARN_ON_ONCE(ch_idx >= target->ch_count))
		return SUCCESS;
	ch = &target->ch[ch_idx];
	if (!srp_claim_req(ch, req, NULL, scmnd))
		return SUCCESS;
	shost_printk(KERN_ERR, target->scsi_host,
		     "Sending SRP abort for tag %#x\n", tag);
B
Bart Van Assche 已提交
2669
	if (srp_send_tsk_mgmt(ch, tag, scmnd->device->lun,
2670
			      SRP_TSK_ABORT_TASK, NULL) == 0)
2671
		ret = SUCCESS;
2672
	else if (target->rport->state == SRP_RPORT_LOST)
2673
		ret = FAST_IO_FAIL;
2674 2675
	else
		ret = FAILED;
2676
	srp_free_req(ch, req, scmnd, 0);
B
Bart Van Assche 已提交
2677
	scmnd->result = DID_ABORT << 16;
2678
	scmnd->scsi_done(scmnd);
2679

2680
	return ret;
2681 2682 2683 2684
}

static int srp_reset_device(struct scsi_cmnd *scmnd)
{
2685
	struct srp_target_port *target = host_to_target(scmnd->device->host);
B
Bart Van Assche 已提交
2686
	struct srp_rdma_ch *ch;
2687
	int i;
2688
	u8 status;
2689

2690
	shost_printk(KERN_ERR, target->scsi_host, "SRP reset_device called\n");
2691

B
Bart Van Assche 已提交
2692
	ch = &target->ch[0];
2693
	if (srp_send_tsk_mgmt(ch, SRP_TAG_NO_REQ, scmnd->device->lun,
2694
			      SRP_TSK_LUN_RESET, &status))
2695
		return FAILED;
2696
	if (status)
2697 2698
		return FAILED;

B
Bart Van Assche 已提交
2699 2700 2701 2702
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		for (i = 0; i < target->req_ring_size; ++i) {
			struct srp_request *req = &ch->req_ring[i];
2703

B
Bart Van Assche 已提交
2704 2705
			srp_finish_req(ch, req, scmnd->device, DID_RESET << 16);
		}
2706
	}
2707 2708

	return SUCCESS;
2709 2710 2711 2712 2713 2714
}

static int srp_reset_host(struct scsi_cmnd *scmnd)
{
	struct srp_target_port *target = host_to_target(scmnd->device->host);

2715
	shost_printk(KERN_ERR, target->scsi_host, PFX "SRP reset_host called\n");
2716

2717
	return srp_reconnect_rport(target->rport) == 0 ? SUCCESS : FAILED;
2718 2719
}

2720 2721 2722 2723 2724 2725
static int srp_slave_alloc(struct scsi_device *sdev)
{
	struct Scsi_Host *shost = sdev->host;
	struct srp_target_port *target = host_to_target(shost);
	struct srp_device *srp_dev = target->srp_host->srp_dev;

2726
	if (true)
2727 2728 2729 2730 2731 2732
		blk_queue_virt_boundary(sdev->request_queue,
					~srp_dev->mr_page_mask);

	return 0;
}

2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747
static int srp_slave_configure(struct scsi_device *sdev)
{
	struct Scsi_Host *shost = sdev->host;
	struct srp_target_port *target = host_to_target(shost);
	struct request_queue *q = sdev->request_queue;
	unsigned long timeout;

	if (sdev->type == TYPE_DISK) {
		timeout = max_t(unsigned, 30 * HZ, target->rq_tmo_jiffies);
		blk_queue_rq_timeout(q, timeout);
	}

	return 0;
}

2748 2749
static ssize_t show_id_ext(struct device *dev, struct device_attribute *attr,
			   char *buf)
2750
{
2751
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2752

2753
	return sprintf(buf, "0x%016llx\n", be64_to_cpu(target->id_ext));
2754 2755
}

2756 2757
static ssize_t show_ioc_guid(struct device *dev, struct device_attribute *attr,
			     char *buf)
2758
{
2759
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2760

2761
	return sprintf(buf, "0x%016llx\n", be64_to_cpu(target->ioc_guid));
2762 2763
}

2764 2765
static ssize_t show_service_id(struct device *dev,
			       struct device_attribute *attr, char *buf)
2766
{
2767
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2768

2769
	return sprintf(buf, "0x%016llx\n", be64_to_cpu(target->service_id));
2770 2771
}

2772 2773
static ssize_t show_pkey(struct device *dev, struct device_attribute *attr,
			 char *buf)
2774
{
2775
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2776

2777
	return sprintf(buf, "0x%04x\n", be16_to_cpu(target->pkey));
2778 2779
}

B
Bart Van Assche 已提交
2780 2781 2782 2783 2784
static ssize_t show_sgid(struct device *dev, struct device_attribute *attr,
			 char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));

2785
	return sprintf(buf, "%pI6\n", target->sgid.raw);
B
Bart Van Assche 已提交
2786 2787
}

2788 2789
static ssize_t show_dgid(struct device *dev, struct device_attribute *attr,
			 char *buf)
2790
{
2791
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
B
Bart Van Assche 已提交
2792
	struct srp_rdma_ch *ch = &target->ch[0];
2793

2794
	return sprintf(buf, "%pI6\n", ch->path.dgid.raw);
2795 2796
}

2797 2798
static ssize_t show_orig_dgid(struct device *dev,
			      struct device_attribute *attr, char *buf)
2799
{
2800
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2801

2802
	return sprintf(buf, "%pI6\n", target->orig_dgid.raw);
2803 2804
}

2805 2806 2807 2808
static ssize_t show_req_lim(struct device *dev,
			    struct device_attribute *attr, char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
B
Bart Van Assche 已提交
2809 2810
	struct srp_rdma_ch *ch;
	int i, req_lim = INT_MAX;
2811

B
Bart Van Assche 已提交
2812 2813 2814 2815 2816
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		req_lim = min(req_lim, ch->req_lim);
	}
	return sprintf(buf, "%d\n", req_lim);
2817 2818
}

2819 2820
static ssize_t show_zero_req_lim(struct device *dev,
				 struct device_attribute *attr, char *buf)
2821
{
2822
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2823 2824 2825 2826

	return sprintf(buf, "%d\n", target->zero_req_lim);
}

2827 2828
static ssize_t show_local_ib_port(struct device *dev,
				  struct device_attribute *attr, char *buf)
2829
{
2830
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2831 2832 2833 2834

	return sprintf(buf, "%d\n", target->srp_host->port);
}

2835 2836
static ssize_t show_local_ib_device(struct device *dev,
				    struct device_attribute *attr, char *buf)
2837
{
2838
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
2839

2840
	return sprintf(buf, "%s\n", target->srp_host->srp_dev->dev->name);
2841 2842
}

B
Bart Van Assche 已提交
2843 2844 2845 2846 2847 2848 2849 2850
static ssize_t show_ch_count(struct device *dev, struct device_attribute *attr,
			     char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));

	return sprintf(buf, "%d\n", target->ch_count);
}

2851 2852 2853 2854 2855 2856 2857 2858
static ssize_t show_comp_vector(struct device *dev,
				struct device_attribute *attr, char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));

	return sprintf(buf, "%d\n", target->comp_vector);
}

2859 2860 2861 2862 2863 2864 2865 2866
static ssize_t show_tl_retry_count(struct device *dev,
				   struct device_attribute *attr, char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));

	return sprintf(buf, "%d\n", target->tl_retry_count);
}

2867 2868 2869 2870 2871 2872 2873 2874
static ssize_t show_cmd_sg_entries(struct device *dev,
				   struct device_attribute *attr, char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));

	return sprintf(buf, "%u\n", target->cmd_sg_cnt);
}

2875 2876 2877 2878 2879 2880 2881 2882
static ssize_t show_allow_ext_sg(struct device *dev,
				 struct device_attribute *attr, char *buf)
{
	struct srp_target_port *target = host_to_target(class_to_shost(dev));

	return sprintf(buf, "%s\n", target->allow_ext_sg ? "true" : "false");
}

2883 2884 2885 2886
static DEVICE_ATTR(id_ext,	    S_IRUGO, show_id_ext,	   NULL);
static DEVICE_ATTR(ioc_guid,	    S_IRUGO, show_ioc_guid,	   NULL);
static DEVICE_ATTR(service_id,	    S_IRUGO, show_service_id,	   NULL);
static DEVICE_ATTR(pkey,	    S_IRUGO, show_pkey,		   NULL);
B
Bart Van Assche 已提交
2887
static DEVICE_ATTR(sgid,	    S_IRUGO, show_sgid,		   NULL);
2888 2889
static DEVICE_ATTR(dgid,	    S_IRUGO, show_dgid,		   NULL);
static DEVICE_ATTR(orig_dgid,	    S_IRUGO, show_orig_dgid,	   NULL);
2890
static DEVICE_ATTR(req_lim,         S_IRUGO, show_req_lim,         NULL);
2891 2892 2893
static DEVICE_ATTR(zero_req_lim,    S_IRUGO, show_zero_req_lim,	   NULL);
static DEVICE_ATTR(local_ib_port,   S_IRUGO, show_local_ib_port,   NULL);
static DEVICE_ATTR(local_ib_device, S_IRUGO, show_local_ib_device, NULL);
B
Bart Van Assche 已提交
2894
static DEVICE_ATTR(ch_count,        S_IRUGO, show_ch_count,        NULL);
2895
static DEVICE_ATTR(comp_vector,     S_IRUGO, show_comp_vector,     NULL);
2896
static DEVICE_ATTR(tl_retry_count,  S_IRUGO, show_tl_retry_count,  NULL);
2897
static DEVICE_ATTR(cmd_sg_entries,  S_IRUGO, show_cmd_sg_entries,  NULL);
2898
static DEVICE_ATTR(allow_ext_sg,    S_IRUGO, show_allow_ext_sg,    NULL);
2899 2900 2901 2902 2903 2904

static struct device_attribute *srp_host_attrs[] = {
	&dev_attr_id_ext,
	&dev_attr_ioc_guid,
	&dev_attr_service_id,
	&dev_attr_pkey,
B
Bart Van Assche 已提交
2905
	&dev_attr_sgid,
2906 2907
	&dev_attr_dgid,
	&dev_attr_orig_dgid,
2908
	&dev_attr_req_lim,
2909 2910 2911
	&dev_attr_zero_req_lim,
	&dev_attr_local_ib_port,
	&dev_attr_local_ib_device,
B
Bart Van Assche 已提交
2912
	&dev_attr_ch_count,
2913
	&dev_attr_comp_vector,
2914
	&dev_attr_tl_retry_count,
2915
	&dev_attr_cmd_sg_entries,
2916
	&dev_attr_allow_ext_sg,
2917 2918 2919
	NULL
};

2920 2921
static struct scsi_host_template srp_template = {
	.module				= THIS_MODULE,
R
Roland Dreier 已提交
2922 2923
	.name				= "InfiniBand SRP initiator",
	.proc_name			= DRV_NAME,
2924
	.slave_alloc			= srp_slave_alloc,
2925
	.slave_configure		= srp_slave_configure,
2926 2927
	.info				= srp_target_info,
	.queuecommand			= srp_queuecommand,
2928
	.change_queue_depth             = srp_change_queue_depth,
2929
	.eh_timed_out			= srp_timed_out,
2930 2931 2932
	.eh_abort_handler		= srp_abort,
	.eh_device_reset_handler	= srp_reset_device,
	.eh_host_reset_handler		= srp_reset_host,
B
Bart Van Assche 已提交
2933
	.skip_settle_delay		= true,
2934
	.sg_tablesize			= SRP_DEF_SG_TABLESIZE,
2935
	.can_queue			= SRP_DEFAULT_CMD_SQ_SIZE,
2936
	.this_id			= -1,
2937
	.cmd_per_lun			= SRP_DEFAULT_CMD_SQ_SIZE,
2938
	.use_clustering			= ENABLE_CLUSTERING,
B
Bart Van Assche 已提交
2939
	.shost_attrs			= srp_host_attrs,
2940
	.track_queue_depth		= 1,
2941 2942
};

2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
static int srp_sdev_count(struct Scsi_Host *host)
{
	struct scsi_device *sdev;
	int c = 0;

	shost_for_each_device(sdev, host)
		c++;

	return c;
}

2954 2955 2956 2957 2958 2959 2960
/*
 * Return values:
 * < 0 upon failure. Caller is responsible for SRP target port cleanup.
 * 0 and target->state == SRP_TARGET_REMOVED if asynchronous target port
 *    removal has been scheduled.
 * 0 and target->state != SRP_TARGET_REMOVED upon success.
 */
2961 2962
static int srp_add_target(struct srp_host *host, struct srp_target_port *target)
{
2963 2964 2965
	struct srp_rport_identifiers ids;
	struct srp_rport *rport;

2966
	target->state = SRP_TARGET_SCANNING;
2967
	sprintf(target->target_name, "SRP.T10:%016llX",
2968
		be64_to_cpu(target->id_ext));
2969

2970
	if (scsi_add_host(target->scsi_host, host->srp_dev->dev->dev.parent))
2971 2972
		return -ENODEV;

2973 2974
	memcpy(ids.port_id, &target->id_ext, 8);
	memcpy(ids.port_id + 8, &target->ioc_guid, 8);
2975
	ids.roles = SRP_RPORT_ROLE_TARGET;
2976 2977 2978 2979 2980 2981
	rport = srp_rport_add(target->scsi_host, &ids);
	if (IS_ERR(rport)) {
		scsi_remove_host(target->scsi_host);
		return PTR_ERR(rport);
	}

2982
	rport->lld_data = target;
2983
	target->rport = rport;
2984

2985
	spin_lock(&host->target_lock);
2986
	list_add_tail(&target->list, &host->target_list);
2987
	spin_unlock(&host->target_lock);
2988 2989

	scsi_scan_target(&target->scsi_host->shost_gendev,
2990
			 0, target->scsi_id, SCAN_WILD_CARD, SCSI_SCAN_INITIAL);
2991

2992 2993
	if (srp_connected_ch(target) < target->ch_count ||
	    target->qp_in_error) {
2994 2995 2996 2997 2998 2999
		shost_printk(KERN_INFO, target->scsi_host,
			     PFX "SCSI scan failed - removing SCSI host\n");
		srp_queue_remove_work(target);
		goto out;
	}

3000
	pr_debug("%s: SCSI scan succeeded - detected %d LUNs\n",
3001 3002 3003 3004 3005 3006 3007 3008 3009
		 dev_name(&target->scsi_host->shost_gendev),
		 srp_sdev_count(target->scsi_host));

	spin_lock_irq(&target->lock);
	if (target->state == SRP_TARGET_SCANNING)
		target->state = SRP_TARGET_LIVE;
	spin_unlock_irq(&target->lock);

out:
3010 3011 3012
	return 0;
}

3013
static void srp_release_dev(struct device *dev)
3014 3015
{
	struct srp_host *host =
3016
		container_of(dev, struct srp_host, dev);
3017 3018 3019 3020 3021 3022

	complete(&host->released);
}

static struct class srp_class = {
	.name    = "infiniband_srp",
3023
	.dev_release = srp_release_dev
3024 3025
};

3026 3027
/**
 * srp_conn_unique() - check whether the connection to a target is unique
3028 3029
 * @host:   SRP host.
 * @target: SRP target port.
3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057
 */
static bool srp_conn_unique(struct srp_host *host,
			    struct srp_target_port *target)
{
	struct srp_target_port *t;
	bool ret = false;

	if (target->state == SRP_TARGET_REMOVED)
		goto out;

	ret = true;

	spin_lock(&host->target_lock);
	list_for_each_entry(t, &host->target_list, list) {
		if (t != target &&
		    target->id_ext == t->id_ext &&
		    target->ioc_guid == t->ioc_guid &&
		    target->initiator_ext == t->initiator_ext) {
			ret = false;
			break;
		}
	}
	spin_unlock(&host->target_lock);

out:
	return ret;
}

3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073
/*
 * Target ports are added by writing
 *
 *     id_ext=<SRP ID ext>,ioc_guid=<SRP IOC GUID>,dgid=<dest GID>,
 *     pkey=<P_Key>,service_id=<service ID>
 *
 * to the add_target sysfs attribute.
 */
enum {
	SRP_OPT_ERR		= 0,
	SRP_OPT_ID_EXT		= 1 << 0,
	SRP_OPT_IOC_GUID	= 1 << 1,
	SRP_OPT_DGID		= 1 << 2,
	SRP_OPT_PKEY		= 1 << 3,
	SRP_OPT_SERVICE_ID	= 1 << 4,
	SRP_OPT_MAX_SECT	= 1 << 5,
3074
	SRP_OPT_MAX_CMD_PER_LUN	= 1 << 6,
3075
	SRP_OPT_IO_CLASS	= 1 << 7,
3076
	SRP_OPT_INITIATOR_EXT	= 1 << 8,
3077
	SRP_OPT_CMD_SG_ENTRIES	= 1 << 9,
3078 3079
	SRP_OPT_ALLOW_EXT_SG	= 1 << 10,
	SRP_OPT_SG_TABLESIZE	= 1 << 11,
3080
	SRP_OPT_COMP_VECTOR	= 1 << 12,
3081
	SRP_OPT_TL_RETRY_COUNT	= 1 << 13,
3082
	SRP_OPT_QUEUE_SIZE	= 1 << 14,
3083 3084 3085 3086 3087 3088 3089
	SRP_OPT_ALL		= (SRP_OPT_ID_EXT	|
				   SRP_OPT_IOC_GUID	|
				   SRP_OPT_DGID		|
				   SRP_OPT_PKEY		|
				   SRP_OPT_SERVICE_ID),
};

3090
static const match_table_t srp_opt_tokens = {
3091 3092 3093 3094 3095 3096 3097
	{ SRP_OPT_ID_EXT,		"id_ext=%s" 		},
	{ SRP_OPT_IOC_GUID,		"ioc_guid=%s" 		},
	{ SRP_OPT_DGID,			"dgid=%s" 		},
	{ SRP_OPT_PKEY,			"pkey=%x" 		},
	{ SRP_OPT_SERVICE_ID,		"service_id=%s"		},
	{ SRP_OPT_MAX_SECT,		"max_sect=%d" 		},
	{ SRP_OPT_MAX_CMD_PER_LUN,	"max_cmd_per_lun=%d" 	},
3098
	{ SRP_OPT_IO_CLASS,		"io_class=%x"		},
3099
	{ SRP_OPT_INITIATOR_EXT,	"initiator_ext=%s"	},
3100
	{ SRP_OPT_CMD_SG_ENTRIES,	"cmd_sg_entries=%u"	},
3101 3102
	{ SRP_OPT_ALLOW_EXT_SG,		"allow_ext_sg=%u"	},
	{ SRP_OPT_SG_TABLESIZE,		"sg_tablesize=%u"	},
3103
	{ SRP_OPT_COMP_VECTOR,		"comp_vector=%u"	},
3104
	{ SRP_OPT_TL_RETRY_COUNT,	"tl_retry_count=%u"	},
3105
	{ SRP_OPT_QUEUE_SIZE,		"queue_size=%d"		},
3106
	{ SRP_OPT_ERR,			NULL 			}
3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124
};

static int srp_parse_options(const char *buf, struct srp_target_port *target)
{
	char *options, *sep_opt;
	char *p;
	char dgid[3];
	substring_t args[MAX_OPT_ARGS];
	int opt_mask = 0;
	int token;
	int ret = -EINVAL;
	int i;

	options = kstrdup(buf, GFP_KERNEL);
	if (!options)
		return -ENOMEM;

	sep_opt = options;
3125
	while ((p = strsep(&sep_opt, ",\n")) != NULL) {
3126 3127 3128 3129 3130 3131 3132 3133 3134
		if (!*p)
			continue;

		token = match_token(p, srp_opt_tokens, args);
		opt_mask |= token;

		switch (token) {
		case SRP_OPT_ID_EXT:
			p = match_strdup(args);
3135 3136 3137 3138
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3139 3140 3141 3142 3143 3144
			target->id_ext = cpu_to_be64(simple_strtoull(p, NULL, 16));
			kfree(p);
			break;

		case SRP_OPT_IOC_GUID:
			p = match_strdup(args);
3145 3146 3147 3148
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3149 3150 3151 3152 3153 3154
			target->ioc_guid = cpu_to_be64(simple_strtoull(p, NULL, 16));
			kfree(p);
			break;

		case SRP_OPT_DGID:
			p = match_strdup(args);
3155 3156 3157 3158
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3159
			if (strlen(p) != 32) {
3160
				pr_warn("bad dest GID parameter '%s'\n", p);
3161
				kfree(p);
3162 3163 3164 3165
				goto out;
			}

			for (i = 0; i < 16; ++i) {
3166 3167 3168 3169 3170 3171 3172
				strlcpy(dgid, p + i * 2, sizeof(dgid));
				if (sscanf(dgid, "%hhx",
					   &target->orig_dgid.raw[i]) < 1) {
					ret = -EINVAL;
					kfree(p);
					goto out;
				}
3173
			}
3174
			kfree(p);
3175 3176 3177 3178
			break;

		case SRP_OPT_PKEY:
			if (match_hex(args, &token)) {
3179
				pr_warn("bad P_Key parameter '%s'\n", p);
3180 3181
				goto out;
			}
3182
			target->pkey = cpu_to_be16(token);
3183 3184 3185 3186
			break;

		case SRP_OPT_SERVICE_ID:
			p = match_strdup(args);
3187 3188 3189 3190
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3191 3192 3193 3194 3195 3196
			target->service_id = cpu_to_be64(simple_strtoull(p, NULL, 16));
			kfree(p);
			break;

		case SRP_OPT_MAX_SECT:
			if (match_int(args, &token)) {
3197
				pr_warn("bad max sect parameter '%s'\n", p);
3198 3199 3200 3201 3202
				goto out;
			}
			target->scsi_host->max_sectors = token;
			break;

3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214
		case SRP_OPT_QUEUE_SIZE:
			if (match_int(args, &token) || token < 1) {
				pr_warn("bad queue_size parameter '%s'\n", p);
				goto out;
			}
			target->scsi_host->can_queue = token;
			target->queue_size = token + SRP_RSP_SQ_SIZE +
					     SRP_TSK_MGMT_SQ_SIZE;
			if (!(opt_mask & SRP_OPT_MAX_CMD_PER_LUN))
				target->scsi_host->cmd_per_lun = token;
			break;

3215
		case SRP_OPT_MAX_CMD_PER_LUN:
3216
			if (match_int(args, &token) || token < 1) {
3217 3218
				pr_warn("bad max cmd_per_lun parameter '%s'\n",
					p);
3219 3220
				goto out;
			}
3221
			target->scsi_host->cmd_per_lun = token;
3222 3223
			break;

3224 3225
		case SRP_OPT_IO_CLASS:
			if (match_hex(args, &token)) {
3226
				pr_warn("bad IO class parameter '%s'\n", p);
3227 3228 3229 3230
				goto out;
			}
			if (token != SRP_REV10_IB_IO_CLASS &&
			    token != SRP_REV16A_IB_IO_CLASS) {
3231 3232 3233
				pr_warn("unknown IO class parameter value %x specified (use %x or %x).\n",
					token, SRP_REV10_IB_IO_CLASS,
					SRP_REV16A_IB_IO_CLASS);
3234 3235 3236 3237 3238
				goto out;
			}
			target->io_class = token;
			break;

3239 3240
		case SRP_OPT_INITIATOR_EXT:
			p = match_strdup(args);
3241 3242 3243 3244
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3245 3246 3247 3248
			target->initiator_ext = cpu_to_be64(simple_strtoull(p, NULL, 16));
			kfree(p);
			break;

3249 3250
		case SRP_OPT_CMD_SG_ENTRIES:
			if (match_int(args, &token) || token < 1 || token > 255) {
3251 3252
				pr_warn("bad max cmd_sg_entries parameter '%s'\n",
					p);
3253 3254 3255 3256 3257
				goto out;
			}
			target->cmd_sg_cnt = token;
			break;

3258 3259
		case SRP_OPT_ALLOW_EXT_SG:
			if (match_int(args, &token)) {
3260
				pr_warn("bad allow_ext_sg parameter '%s'\n", p);
3261 3262 3263 3264 3265 3266 3267
				goto out;
			}
			target->allow_ext_sg = !!token;
			break;

		case SRP_OPT_SG_TABLESIZE:
			if (match_int(args, &token) || token < 1 ||
3268
					token > SG_MAX_SEGMENTS) {
3269 3270
				pr_warn("bad max sg_tablesize parameter '%s'\n",
					p);
3271 3272 3273 3274 3275
				goto out;
			}
			target->sg_tablesize = token;
			break;

3276 3277 3278 3279 3280 3281 3282 3283
		case SRP_OPT_COMP_VECTOR:
			if (match_int(args, &token) || token < 0) {
				pr_warn("bad comp_vector parameter '%s'\n", p);
				goto out;
			}
			target->comp_vector = token;
			break;

3284 3285 3286 3287 3288 3289 3290 3291 3292
		case SRP_OPT_TL_RETRY_COUNT:
			if (match_int(args, &token) || token < 2 || token > 7) {
				pr_warn("bad tl_retry_count parameter '%s' (must be a number between 2 and 7)\n",
					p);
				goto out;
			}
			target->tl_retry_count = token;
			break;

3293
		default:
3294 3295
			pr_warn("unknown parameter or missing value '%s' in target creation request\n",
				p);
3296 3297 3298 3299 3300 3301 3302 3303 3304 3305
			goto out;
		}
	}

	if ((opt_mask & SRP_OPT_ALL) == SRP_OPT_ALL)
		ret = 0;
	else
		for (i = 0; i < ARRAY_SIZE(srp_opt_tokens); ++i)
			if ((srp_opt_tokens[i].token & SRP_OPT_ALL) &&
			    !(srp_opt_tokens[i].token & opt_mask))
3306 3307
				pr_warn("target creation request is missing parameter '%s'\n",
					srp_opt_tokens[i].pattern);
3308

3309 3310 3311 3312 3313 3314
	if (target->scsi_host->cmd_per_lun > target->scsi_host->can_queue
	    && (opt_mask & SRP_OPT_MAX_CMD_PER_LUN))
		pr_warn("cmd_per_lun = %d > queue_size = %d\n",
			target->scsi_host->cmd_per_lun,
			target->scsi_host->can_queue);

3315 3316 3317 3318 3319
out:
	kfree(options);
	return ret;
}

3320 3321
static ssize_t srp_create_target(struct device *dev,
				 struct device_attribute *attr,
3322 3323 3324
				 const char *buf, size_t count)
{
	struct srp_host *host =
3325
		container_of(dev, struct srp_host, dev);
3326 3327
	struct Scsi_Host *target_host;
	struct srp_target_port *target;
3328
	struct srp_rdma_ch *ch;
3329 3330
	struct srp_device *srp_dev = host->srp_dev;
	struct ib_device *ibdev = srp_dev->dev;
B
Bart Van Assche 已提交
3331
	int ret, node_idx, node, cpu, i;
3332
	unsigned int max_sectors_per_mr, mr_per_cmd = 0;
B
Bart Van Assche 已提交
3333
	bool multich = false;
3334 3335 3336 3337 3338 3339

	target_host = scsi_host_alloc(&srp_template,
				      sizeof (struct srp_target_port));
	if (!target_host)
		return -ENOMEM;

3340
	target_host->transportt  = ib_srp_transport_template;
3341 3342
	target_host->max_channel = 0;
	target_host->max_id      = 1;
B
Bart Van Assche 已提交
3343
	target_host->max_lun     = -1LL;
A
Arne Redlich 已提交
3344
	target_host->max_cmd_len = sizeof ((struct srp_cmd *) (void *) 0L)->cdb;
R
Roland Dreier 已提交
3345

3346 3347
	target = host_to_target(target_host);

3348 3349 3350
	target->io_class	= SRP_REV16A_IB_IO_CLASS;
	target->scsi_host	= target_host;
	target->srp_host	= host;
J
Jason Gunthorpe 已提交
3351
	target->lkey		= host->srp_dev->pd->local_dma_lkey;
B
Bart Van Assche 已提交
3352
	target->global_rkey	= host->srp_dev->global_rkey;
3353
	target->cmd_sg_cnt	= cmd_sg_entries;
3354 3355
	target->sg_tablesize	= indirect_sg_entries ? : cmd_sg_entries;
	target->allow_ext_sg	= allow_ext_sg;
3356
	target->tl_retry_count	= 7;
3357
	target->queue_size	= SRP_DEFAULT_QUEUE_SIZE;
3358

3359 3360 3361 3362 3363 3364
	/*
	 * Avoid that the SCSI host can be removed by srp_remove_target()
	 * before this function returns.
	 */
	scsi_host_get(target->scsi_host);

3365 3366 3367
	ret = mutex_lock_interruptible(&host->add_target_mutex);
	if (ret < 0)
		goto put;
3368

3369 3370
	ret = srp_parse_options(buf, target);
	if (ret)
3371
		goto out;
3372

3373 3374
	target->req_ring_size = target->queue_size - SRP_TSK_MGMT_SQ_SIZE;

3375 3376 3377 3378 3379 3380 3381
	if (!srp_conn_unique(target->srp_host, target)) {
		shost_printk(KERN_INFO, target->scsi_host,
			     PFX "Already connected to target port with id_ext=%016llx;ioc_guid=%016llx;initiator_ext=%016llx\n",
			     be64_to_cpu(target->id_ext),
			     be64_to_cpu(target->ioc_guid),
			     be64_to_cpu(target->initiator_ext));
		ret = -EEXIST;
3382
		goto out;
3383 3384
	}

3385
	if (!srp_dev->has_fmr && !srp_dev->has_fr && !target->allow_ext_sg &&
3386
	    target->cmd_sg_cnt < target->sg_tablesize) {
3387
		pr_warn("No MR pool and no external indirect descriptors, limiting sg_tablesize to cmd_sg_cnt\n");
3388 3389 3390
		target->sg_tablesize = target->cmd_sg_cnt;
	}

3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414
	if (srp_dev->use_fast_reg || srp_dev->use_fmr) {
		/*
		 * FR and FMR can only map one HCA page per entry. If the
		 * start address is not aligned on a HCA page boundary two
		 * entries will be used for the head and the tail although
		 * these two entries combined contain at most one HCA page of
		 * data. Hence the "+ 1" in the calculation below.
		 *
		 * The indirect data buffer descriptor is contiguous so the
		 * memory for that buffer will only be registered if
		 * register_always is true. Hence add one to mr_per_cmd if
		 * register_always has been set.
		 */
		max_sectors_per_mr = srp_dev->max_pages_per_mr <<
				  (ilog2(srp_dev->mr_page_size) - 9);
		mr_per_cmd = register_always +
			(target->scsi_host->max_sectors + 1 +
			 max_sectors_per_mr - 1) / max_sectors_per_mr;
		pr_debug("max_sectors = %u; max_pages_per_mr = %u; mr_page_size = %u; max_sectors_per_mr = %u; mr_per_cmd = %u\n",
			 target->scsi_host->max_sectors,
			 srp_dev->max_pages_per_mr, srp_dev->mr_page_size,
			 max_sectors_per_mr, mr_per_cmd);
	}

3415
	target_host->sg_tablesize = target->sg_tablesize;
3416 3417
	target->mr_pool_size = target->scsi_host->can_queue * mr_per_cmd;
	target->mr_per_cmd = mr_per_cmd;
3418 3419
	target->indirect_size = target->sg_tablesize *
				sizeof (struct srp_direct_buf);
3420 3421 3422 3423
	target->max_iu_len = sizeof (struct srp_cmd) +
			     sizeof (struct srp_indirect_buf) +
			     target->cmd_sg_cnt * sizeof (struct srp_direct_buf);

3424
	INIT_WORK(&target->tl_err_work, srp_tl_err_work);
3425
	INIT_WORK(&target->remove_work, srp_remove_work);
3426
	spin_lock_init(&target->lock);
3427
	ret = ib_query_gid(ibdev, host->port, 0, &target->sgid, NULL);
3428
	if (ret)
3429
		goto out;
3430

B
Bart Van Assche 已提交
3431 3432 3433 3434 3435 3436 3437 3438 3439
	ret = -ENOMEM;
	target->ch_count = max_t(unsigned, num_online_nodes(),
				 min(ch_count ? :
				     min(4 * num_online_nodes(),
					 ibdev->num_comp_vectors),
				     num_online_cpus()));
	target->ch = kcalloc(target->ch_count, sizeof(*target->ch),
			     GFP_KERNEL);
	if (!target->ch)
3440
		goto out;
3441

B
Bart Van Assche 已提交
3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469
	node_idx = 0;
	for_each_online_node(node) {
		const int ch_start = (node_idx * target->ch_count /
				      num_online_nodes());
		const int ch_end = ((node_idx + 1) * target->ch_count /
				    num_online_nodes());
		const int cv_start = (node_idx * ibdev->num_comp_vectors /
				      num_online_nodes() + target->comp_vector)
				     % ibdev->num_comp_vectors;
		const int cv_end = ((node_idx + 1) * ibdev->num_comp_vectors /
				    num_online_nodes() + target->comp_vector)
				   % ibdev->num_comp_vectors;
		int cpu_idx = 0;

		for_each_online_cpu(cpu) {
			if (cpu_to_node(cpu) != node)
				continue;
			if (ch_start + cpu_idx >= ch_end)
				continue;
			ch = &target->ch[ch_start + cpu_idx];
			ch->target = target;
			ch->comp_vector = cv_start == cv_end ? cv_start :
				cv_start + cpu_idx % (cv_end - cv_start);
			spin_lock_init(&ch->lock);
			INIT_LIST_HEAD(&ch->free_tx);
			ret = srp_new_cm_id(ch);
			if (ret)
				goto err_disconnect;
3470

B
Bart Van Assche 已提交
3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481
			ret = srp_create_ch_ib(ch);
			if (ret)
				goto err_disconnect;

			ret = srp_alloc_req_data(ch);
			if (ret)
				goto err_disconnect;

			ret = srp_connect_ch(ch, multich);
			if (ret) {
				shost_printk(KERN_ERR, target->scsi_host,
3482
					     PFX "Connection %d/%d to %pI6 failed\n",
B
Bart Van Assche 已提交
3483
					     ch_start + cpu_idx,
3484 3485
					     target->ch_count,
					     ch->target->orig_dgid.raw);
B
Bart Van Assche 已提交
3486
				if (node_idx == 0 && cpu_idx == 0) {
B
Bart Van Assche 已提交
3487
					goto free_ch;
B
Bart Van Assche 已提交
3488 3489 3490 3491
				} else {
					srp_free_ch_ib(target, ch);
					srp_free_req_data(target, ch);
					target->ch_count = ch - target->ch;
3492
					goto connected;
B
Bart Van Assche 已提交
3493 3494 3495 3496 3497 3498 3499
				}
			}

			multich = true;
			cpu_idx++;
		}
		node_idx++;
3500 3501
	}

3502
connected:
B
Bart Van Assche 已提交
3503 3504
	target->scsi_host->nr_hw_queues = target->ch_count;

3505 3506 3507 3508
	ret = srp_add_target(host, target);
	if (ret)
		goto err_disconnect;

3509 3510 3511 3512 3513
	if (target->state != SRP_TARGET_REMOVED) {
		shost_printk(KERN_DEBUG, target->scsi_host, PFX
			     "new target: id_ext %016llx ioc_guid %016llx pkey %04x service_id %016llx sgid %pI6 dgid %pI6\n",
			     be64_to_cpu(target->id_ext),
			     be64_to_cpu(target->ioc_guid),
3514
			     be16_to_cpu(target->pkey),
3515
			     be64_to_cpu(target->service_id),
3516
			     target->sgid.raw, target->orig_dgid.raw);
3517
	}
B
Bart Van Assche 已提交
3518

3519 3520 3521 3522
	ret = count;

out:
	mutex_unlock(&host->add_target_mutex);
3523

3524
put:
3525
	scsi_host_put(target->scsi_host);
3526 3527
	if (ret < 0)
		scsi_host_put(target->scsi_host);
3528

3529
	return ret;
3530 3531 3532 3533

err_disconnect:
	srp_disconnect_target(target);

B
Bart Van Assche 已提交
3534
free_ch:
B
Bart Van Assche 已提交
3535 3536 3537 3538 3539
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		srp_free_ch_ib(target, ch);
		srp_free_req_data(target, ch);
	}
3540

B
Bart Van Assche 已提交
3541
	kfree(target->ch);
3542
	goto out;
3543 3544
}

3545
static DEVICE_ATTR(add_target, S_IWUSR, NULL, srp_create_target);
3546

3547 3548
static ssize_t show_ibdev(struct device *dev, struct device_attribute *attr,
			  char *buf)
3549
{
3550
	struct srp_host *host = container_of(dev, struct srp_host, dev);
3551

3552
	return sprintf(buf, "%s\n", host->srp_dev->dev->name);
3553 3554
}

3555
static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
3556

3557 3558
static ssize_t show_port(struct device *dev, struct device_attribute *attr,
			 char *buf)
3559
{
3560
	struct srp_host *host = container_of(dev, struct srp_host, dev);
3561 3562 3563 3564

	return sprintf(buf, "%d\n", host->port);
}

3565
static DEVICE_ATTR(port, S_IRUGO, show_port, NULL);
3566

3567
static struct srp_host *srp_add_port(struct srp_device *device, u8 port)
3568 3569 3570 3571 3572 3573 3574 3575
{
	struct srp_host *host;

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

	INIT_LIST_HEAD(&host->target_list);
3576
	spin_lock_init(&host->target_lock);
3577
	init_completion(&host->released);
3578
	mutex_init(&host->add_target_mutex);
3579
	host->srp_dev = device;
3580 3581
	host->port = port;

3582
	host->dev.class = &srp_class;
3583
	host->dev.parent = device->dev->dev.parent;
3584
	dev_set_name(&host->dev, "srp-%s-%d", device->dev->name, port);
3585

3586
	if (device_register(&host->dev))
3587
		goto free_host;
3588
	if (device_create_file(&host->dev, &dev_attr_add_target))
3589
		goto err_class;
3590
	if (device_create_file(&host->dev, &dev_attr_ibdev))
3591
		goto err_class;
3592
	if (device_create_file(&host->dev, &dev_attr_port))
3593 3594 3595 3596 3597
		goto err_class;

	return host;

err_class:
3598
	device_unregister(&host->dev);
3599

3600
free_host:
3601 3602 3603 3604 3605 3606 3607
	kfree(host);

	return NULL;
}

static void srp_add_one(struct ib_device *device)
{
3608
	struct srp_device *srp_dev;
3609
	struct ib_device_attr *attr = &device->attrs;
3610
	struct srp_host *host;
3611
	int mr_page_shift, p;
3612
	u64 max_pages_per_mr;
3613
	unsigned int flags = 0;
3614

3615
	srp_dev = kzalloc(sizeof(*srp_dev), GFP_KERNEL);
3616
	if (!srp_dev)
3617
		return;
3618 3619 3620

	/*
	 * Use the smallest page size supported by the HCA, down to a
3621 3622
	 * minimum of 4096 bytes. We're unlikely to build large sglists
	 * out of smaller entries.
3623
	 */
3624
	mr_page_shift		= max(12, ffs(attr->page_size_cap) - 1);
3625 3626
	srp_dev->mr_page_size	= 1 << mr_page_shift;
	srp_dev->mr_page_mask	= ~((u64) srp_dev->mr_page_size - 1);
3627
	max_pages_per_mr	= attr->max_mr_size;
3628
	do_div(max_pages_per_mr, srp_dev->mr_page_size);
3629
	pr_debug("%s: %llu / %u = %llu <> %u\n", __func__,
3630
		 attr->max_mr_size, srp_dev->mr_page_size,
3631
		 max_pages_per_mr, SRP_MAX_PAGES_PER_MR);
3632 3633
	srp_dev->max_pages_per_mr = min_t(u64, SRP_MAX_PAGES_PER_MR,
					  max_pages_per_mr);
3634 3635 3636

	srp_dev->has_fmr = (device->alloc_fmr && device->dealloc_fmr &&
			    device->map_phys_fmr && device->unmap_fmr);
3637
	srp_dev->has_fr = (attr->device_cap_flags &
3638
			   IB_DEVICE_MEM_MGT_EXTENSIONS);
3639
	if (!never_register && !srp_dev->has_fmr && !srp_dev->has_fr) {
3640
		dev_warn(&device->dev, "neither FMR nor FR is supported\n");
3641
	} else if (!never_register &&
3642
		   attr->max_mr_size >= 2 * srp_dev->mr_page_size) {
3643 3644 3645 3646
		srp_dev->use_fast_reg = (srp_dev->has_fr &&
					 (!srp_dev->has_fmr || prefer_fr));
		srp_dev->use_fmr = !srp_dev->use_fast_reg && srp_dev->has_fmr;
	}
3647

3648 3649 3650 3651
	if (never_register || !register_always ||
	    (!srp_dev->has_fmr && !srp_dev->has_fr))
		flags |= IB_PD_UNSAFE_GLOBAL_RKEY;

3652 3653 3654
	if (srp_dev->use_fast_reg) {
		srp_dev->max_pages_per_mr =
			min_t(u32, srp_dev->max_pages_per_mr,
3655
			      attr->max_fast_reg_page_list_len);
3656
	}
3657 3658
	srp_dev->mr_max_size	= srp_dev->mr_page_size *
				   srp_dev->max_pages_per_mr;
3659
	pr_debug("%s: mr_page_shift = %d, device->max_mr_size = %#llx, device->max_fast_reg_page_list_len = %u, max_pages_per_mr = %d, mr_max_size = %#x\n",
3660 3661
		 device->name, mr_page_shift, attr->max_mr_size,
		 attr->max_fast_reg_page_list_len,
3662
		 srp_dev->max_pages_per_mr, srp_dev->mr_max_size);
3663 3664 3665 3666

	INIT_LIST_HEAD(&srp_dev->dev_list);

	srp_dev->dev = device;
3667
	srp_dev->pd  = ib_alloc_pd(device, flags);
3668 3669 3670
	if (IS_ERR(srp_dev->pd))
		goto free_dev;

B
Bart Van Assche 已提交
3671 3672 3673 3674
	if (flags & IB_PD_UNSAFE_GLOBAL_RKEY) {
		srp_dev->global_rkey = srp_dev->pd->unsafe_global_rkey;
		WARN_ON_ONCE(srp_dev->global_rkey == 0);
	}
3675

3676
	for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
3677
		host = srp_add_port(srp_dev, p);
3678
		if (host)
3679
			list_add_tail(&host->list, &srp_dev->dev_list);
3680 3681
	}

3682
	ib_set_client_data(device, &srp_client, srp_dev);
3683
	return;
3684 3685 3686

free_dev:
	kfree(srp_dev);
3687 3688
}

3689
static void srp_remove_one(struct ib_device *device, void *client_data)
3690
{
3691
	struct srp_device *srp_dev;
3692
	struct srp_host *host, *tmp_host;
3693
	struct srp_target_port *target;
3694

3695
	srp_dev = client_data;
3696 3697
	if (!srp_dev)
		return;
3698

3699
	list_for_each_entry_safe(host, tmp_host, &srp_dev->dev_list, list) {
3700
		device_unregister(&host->dev);
3701 3702 3703 3704 3705 3706 3707
		/*
		 * Wait for the sysfs entry to go away, so that no new
		 * target ports can be created.
		 */
		wait_for_completion(&host->released);

		/*
3708
		 * Remove all target ports.
3709
		 */
3710
		spin_lock(&host->target_lock);
3711 3712
		list_for_each_entry(target, &host->target_list, list)
			srp_queue_remove_work(target);
3713
		spin_unlock(&host->target_lock);
3714 3715

		/*
3716
		 * Wait for tl_err and target port removal tasks.
3717
		 */
3718
		flush_workqueue(system_long_wq);
3719
		flush_workqueue(srp_remove_wq);
3720 3721 3722 3723

		kfree(host);
	}

3724 3725 3726
	ib_dealloc_pd(srp_dev->pd);

	kfree(srp_dev);
3727 3728
}

3729
static struct srp_function_template ib_srp_transport_functions = {
3730 3731
	.has_rport_state	 = true,
	.reset_timer_if_blocked	 = true,
3732
	.reconnect_delay	 = &srp_reconnect_delay,
3733 3734 3735
	.fast_io_fail_tmo	 = &srp_fast_io_fail_tmo,
	.dev_loss_tmo		 = &srp_dev_loss_tmo,
	.reconnect		 = srp_rport_reconnect,
3736
	.rport_delete		 = srp_rport_delete,
3737
	.terminate_rport_io	 = srp_terminate_io,
3738 3739
};

3740 3741 3742 3743
static int __init srp_init_module(void)
{
	int ret;

3744
	if (srp_sg_tablesize) {
3745
		pr_warn("srp_sg_tablesize is deprecated, please use cmd_sg_entries\n");
3746 3747 3748 3749 3750 3751 3752 3753
		if (!cmd_sg_entries)
			cmd_sg_entries = srp_sg_tablesize;
	}

	if (!cmd_sg_entries)
		cmd_sg_entries = SRP_DEF_SG_TABLESIZE;

	if (cmd_sg_entries > 255) {
3754
		pr_warn("Clamping cmd_sg_entries to 255\n");
3755
		cmd_sg_entries = 255;
3756 3757
	}

3758 3759 3760
	if (!indirect_sg_entries)
		indirect_sg_entries = cmd_sg_entries;
	else if (indirect_sg_entries < cmd_sg_entries) {
3761 3762
		pr_warn("Bumping up indirect_sg_entries to match cmd_sg_entries (%u)\n",
			cmd_sg_entries);
3763 3764 3765
		indirect_sg_entries = cmd_sg_entries;
	}

3766 3767 3768 3769 3770 3771
	if (indirect_sg_entries > SG_MAX_SEGMENTS) {
		pr_warn("Clamping indirect_sg_entries to %u\n",
			SG_MAX_SEGMENTS);
		indirect_sg_entries = SG_MAX_SEGMENTS;
	}

3772
	srp_remove_wq = create_workqueue("srp_remove");
3773 3774
	if (!srp_remove_wq) {
		ret = -ENOMEM;
3775 3776 3777 3778
		goto out;
	}

	ret = -ENOMEM;
3779 3780 3781
	ib_srp_transport_template =
		srp_attach_transport(&ib_srp_transport_functions);
	if (!ib_srp_transport_template)
3782
		goto destroy_wq;
3783

3784 3785
	ret = class_register(&srp_class);
	if (ret) {
3786
		pr_err("couldn't register class infiniband_srp\n");
3787
		goto release_tr;
3788 3789
	}

3790 3791
	ib_sa_register_client(&srp_sa_client);

3792 3793
	ret = ib_register_client(&srp_client);
	if (ret) {
3794
		pr_err("couldn't register IB client\n");
3795
		goto unreg_sa;
3796 3797
	}

3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810
out:
	return ret;

unreg_sa:
	ib_sa_unregister_client(&srp_sa_client);
	class_unregister(&srp_class);

release_tr:
	srp_release_transport(ib_srp_transport_template);

destroy_wq:
	destroy_workqueue(srp_remove_wq);
	goto out;
3811 3812 3813 3814 3815
}

static void __exit srp_cleanup_module(void)
{
	ib_unregister_client(&srp_client);
3816
	ib_sa_unregister_client(&srp_sa_client);
3817
	class_unregister(&srp_class);
3818
	srp_release_transport(ib_srp_transport_template);
3819
	destroy_workqueue(srp_remove_wq);
3820 3821 3822 3823
}

module_init(srp_init_module);
module_exit(srp_cleanup_module);