ib_srp.c 109.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>
B
Bart Van Assche 已提交
44
#include <linux/inet.h>
45
#include <rdma/ib_cache.h>
46

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

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

#include "ib_srp.h"

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

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

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

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

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

85 86 87
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)");
88

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

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

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

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

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

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

112
static const struct kernel_param_ops srp_tmo_ops;
113

114 115 116 117 118
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");

119 120 121 122 123 124 125 126
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.");

127
static int srp_dev_loss_tmo = 600;
128 129 130 131 132 133 134 135 136 137
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 已提交
138 139 140 141 142
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.");

143
static void srp_add_one(struct ib_device *device);
144
static void srp_remove_one(struct ib_device *device, void *client_data);
C
Christoph Hellwig 已提交
145 146 147
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);
B
Bart Van Assche 已提交
148 149 150
static int srp_ib_cm_handler(struct ib_cm_id *cm_id, struct ib_cm_event *event);
static int srp_rdma_cm_handler(struct rdma_cm_id *cm_id,
			       struct rdma_cm_event *event);
151

152
static struct scsi_transport_template *ib_srp_transport_template;
153
static struct workqueue_struct *srp_remove_wq;
154

155 156 157 158 159 160
static struct ib_client srp_client = {
	.name   = "srp",
	.add    = srp_add_one,
	.remove = srp_remove_one
};

161 162
static struct ib_sa_client srp_sa_client;

163 164 165 166 167 168 169 170 171 172 173 174 175 176
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;

177 178 179 180
	res = srp_parse_tmo(&tmo, val);
	if (res)
		goto out;

181 182 183 184 185
	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);
186
	else
187 188
		res = srp_tmo_valid(srp_reconnect_delay, srp_fast_io_fail_tmo,
				    tmo);
189 190 191 192 193 194 195 196
	if (res)
		goto out;
	*(int *)kp->arg = tmo;

out:
	return res;
}

197
static const struct kernel_param_ops srp_tmo_ops = {
198 199 200 201
	.get = srp_tmo_get,
	.set = srp_tmo_set,
};

202 203 204 205 206 207 208 209 210 211
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;
}

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

	return topspin_workarounds &&
218 219
		(!memcmp(&target->ioc_guid, topspin_oui, sizeof topspin_oui) ||
		 !memcmp(&target->ioc_guid, cisco_oui, sizeof cisco_oui));
220 221
}

222 223 224 225 226 227 228 229 230 231 232 233 234 235
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;

236 237 238
	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))
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
		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;

259 260
	ib_dma_unmap_single(host->srp_dev->dev, iu->dma, iu->size,
			    iu->direction);
261 262 263 264 265 266
	kfree(iu->buf);
	kfree(iu);
}

static void srp_qp_event(struct ib_event *event, void *context)
{
267 268
	pr_debug("QP event %s (%d)\n",
		 ib_event_msg(event->event), event->event);
269 270
}

B
Bart Van Assche 已提交
271 272
static int srp_init_ib_qp(struct srp_target_port *target,
			  struct ib_qp *qp)
273 274 275 276 277 278 279 280
{
	struct ib_qp_attr *attr;
	int ret;

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

281 282
	ret = ib_find_cached_pkey(target->srp_host->srp_dev->dev,
				  target->srp_host->port,
B
Bart Van Assche 已提交
283
				  be16_to_cpu(target->ib_cm.pkey),
284
				  &attr->pkey_index);
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
	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;
}

B
Bart Van Assche 已提交
304
static int srp_new_ib_cm_id(struct srp_rdma_ch *ch)
D
David Dillow 已提交
305
{
306
	struct srp_target_port *target = ch->target;
D
David Dillow 已提交
307 308
	struct ib_cm_id *new_cm_id;

309
	new_cm_id = ib_create_cm_id(target->srp_host->srp_dev->dev,
B
Bart Van Assche 已提交
310
				    srp_ib_cm_handler, ch);
D
David Dillow 已提交
311 312 313
	if (IS_ERR(new_cm_id))
		return PTR_ERR(new_cm_id);

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

	return 0;
}

B
Bart Van Assche 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
static int srp_new_rdma_cm_id(struct srp_rdma_ch *ch)
{
	struct srp_target_port *target = ch->target;
	struct rdma_cm_id *new_cm_id;
	int ret;

	new_cm_id = rdma_create_id(target->net, srp_rdma_cm_handler, ch,
				   RDMA_PS_TCP, IB_QPT_RC);
	if (IS_ERR(new_cm_id)) {
		ret = PTR_ERR(new_cm_id);
		new_cm_id = NULL;
		goto out;
	}

	init_completion(&ch->done);
	ret = rdma_resolve_addr(new_cm_id, target->rdma_cm.src_specified ?
				(struct sockaddr *)&target->rdma_cm.src : NULL,
				(struct sockaddr *)&target->rdma_cm.dst,
				SRP_PATH_REC_TIMEOUT_MS);
	if (ret) {
350 351
		pr_err("No route available from %pIS to %pIS (%d)\n",
		       &target->rdma_cm.src, &target->rdma_cm.dst, ret);
B
Bart Van Assche 已提交
352 353 354 355 356 357 358 359
		goto out;
	}
	ret = wait_for_completion_interruptible(&ch->done);
	if (ret < 0)
		goto out;

	ret = ch->status;
	if (ret) {
360 361
		pr_err("Resolving address %pIS failed (%d)\n",
		       &target->rdma_cm.dst, ret);
B
Bart Van Assche 已提交
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
		goto out;
	}

	swap(ch->rdma_cm.cm_id, new_cm_id);

out:
	if (new_cm_id)
		rdma_destroy_id(new_cm_id);

	return ret;
}

static int srp_new_cm_id(struct srp_rdma_ch *ch)
{
	struct srp_target_port *target = ch->target;

	return target->using_rdma_cm ? srp_new_rdma_cm_id(ch) :
		srp_new_ib_cm_id(ch);
}

382 383 384 385 386 387
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));
388
	fmr_param.pool_size	    = target->mr_pool_size;
389 390
	fmr_param.dirty_watermark   = fmr_param.pool_size / 4;
	fmr_param.cache		    = 1;
391 392
	fmr_param.max_pages_per_fmr = dev->max_pages_per_mr;
	fmr_param.page_shift	    = ilog2(dev->mr_page_size);
393 394 395 396 397 398 399
	fmr_param.access	    = (IB_ACCESS_LOCAL_WRITE |
				       IB_ACCESS_REMOTE_WRITE |
				       IB_ACCESS_REMOTE_READ);

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

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
/**
 * 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++) {
448 449
		mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG,
				 max_page_list_len);
450 451
		if (IS_ERR(mr)) {
			ret = PTR_ERR(mr);
452 453 454
			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));
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
			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;

516
	return srp_create_fr_pool(dev->dev, dev->pd, target->mr_pool_size,
517 518 519
				  dev->max_pages_per_mr);
}

520 521
/**
 * srp_destroy_qp() - destroy an RDMA queue pair
522
 * @ch: SRP RDMA channel.
523
 *
S
Steve Wise 已提交
524 525
 * Drain the qp before destroying it.  This avoids that the receive
 * completion handler can access the queue pair while it is
526 527
 * being destroyed.
 */
528
static void srp_destroy_qp(struct srp_rdma_ch *ch)
529
{
530 531 532 533
	spin_lock_irq(&ch->lock);
	ib_process_cq_direct(ch->send_cq, -1);
	spin_unlock_irq(&ch->lock);

534 535
	ib_drain_qp(ch->qp);
	ib_destroy_qp(ch->qp);
536 537
}

538
static int srp_create_ch_ib(struct srp_rdma_ch *ch)
539
{
540
	struct srp_target_port *target = ch->target;
541
	struct srp_device *dev = target->srp_host->srp_dev;
542
	struct ib_qp_init_attr *init_attr;
543 544
	struct ib_cq *recv_cq, *send_cq;
	struct ib_qp *qp;
545
	struct ib_fmr_pool *fmr_pool = NULL;
546
	struct srp_fr_pool *fr_pool = NULL;
547
	const int m = 1 + dev->use_fast_reg * target->mr_per_cmd * 2;
548 549 550 551 552 553
	int ret;

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

S
Steve Wise 已提交
554
	/* queue_size + 1 for ib_drain_rq() */
C
Christoph Hellwig 已提交
555 556
	recv_cq = ib_alloc_cq(dev->dev, ch, target->queue_size + 1,
				ch->comp_vector, IB_POLL_SOFTIRQ);
557 558
	if (IS_ERR(recv_cq)) {
		ret = PTR_ERR(recv_cq);
559
		goto err;
560 561
	}

C
Christoph Hellwig 已提交
562 563
	send_cq = ib_alloc_cq(dev->dev, ch, m * target->queue_size,
				ch->comp_vector, IB_POLL_DIRECT);
564 565
	if (IS_ERR(send_cq)) {
		ret = PTR_ERR(send_cq);
566
		goto err_recv_cq;
567 568
	}

569
	init_attr->event_handler       = srp_qp_event;
570
	init_attr->cap.max_send_wr     = m * target->queue_size;
571
	init_attr->cap.max_recv_wr     = target->queue_size + 1;
572 573
	init_attr->cap.max_recv_sge    = 1;
	init_attr->cap.max_send_sge    = 1;
574
	init_attr->sq_sig_type         = IB_SIGNAL_REQ_WR;
575
	init_attr->qp_type             = IB_QPT_RC;
576 577
	init_attr->send_cq             = send_cq;
	init_attr->recv_cq             = recv_cq;
578

B
Bart Van Assche 已提交
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
	if (target->using_rdma_cm) {
		ret = rdma_create_qp(ch->rdma_cm.cm_id, dev->pd, init_attr);
		qp = ch->rdma_cm.cm_id->qp;
	} else {
		qp = ib_create_qp(dev->pd, init_attr);
		if (!IS_ERR(qp)) {
			ret = srp_init_ib_qp(target, qp);
			if (ret)
				ib_destroy_qp(qp);
		} else {
			ret = PTR_ERR(qp);
		}
	}
	if (ret) {
		pr_err("QP creation failed for dev %s: %d\n",
		       dev_name(&dev->dev->dev), ret);
595
		goto err_send_cq;
596 597
	}

598
	if (dev->use_fast_reg) {
599 600 601 602 603 604 605
		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;
		}
606
	} else if (dev->use_fmr) {
607 608 609 610 611 612 613 614 615
		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;
		}
	}

616
	if (ch->qp)
617
		srp_destroy_qp(ch);
618
	if (ch->recv_cq)
C
Christoph Hellwig 已提交
619
		ib_free_cq(ch->recv_cq);
620
	if (ch->send_cq)
C
Christoph Hellwig 已提交
621
		ib_free_cq(ch->send_cq);
622

623 624 625
	ch->qp = qp;
	ch->recv_cq = recv_cq;
	ch->send_cq = send_cq;
626

627 628 629 630 631 632 633 634 635 636
	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;
	}

637 638 639 640
	kfree(init_attr);
	return 0;

err_qp:
B
Bart Van Assche 已提交
641 642 643 644
	if (target->using_rdma_cm)
		rdma_destroy_qp(ch->rdma_cm.cm_id);
	else
		ib_destroy_qp(qp);
645 646

err_send_cq:
C
Christoph Hellwig 已提交
647
	ib_free_cq(send_cq);
648 649

err_recv_cq:
C
Christoph Hellwig 已提交
650
	ib_free_cq(recv_cq);
651 652

err:
653 654 655 656
	kfree(init_attr);
	return ret;
}

657 658
/*
 * Note: this function may be called without srp_alloc_iu_bufs() having been
659
 * invoked. Hence the ch->[rt]x_ring checks.
660
 */
661 662
static void srp_free_ch_ib(struct srp_target_port *target,
			   struct srp_rdma_ch *ch)
663
{
664
	struct srp_device *dev = target->srp_host->srp_dev;
665 666
	int i;

B
Bart Van Assche 已提交
667 668 669
	if (!ch->target)
		return;

B
Bart Van Assche 已提交
670 671 672 673 674 675 676 677 678 679
	if (target->using_rdma_cm) {
		if (ch->rdma_cm.cm_id) {
			rdma_destroy_id(ch->rdma_cm.cm_id);
			ch->rdma_cm.cm_id = NULL;
		}
	} else {
		if (ch->ib_cm.cm_id) {
			ib_destroy_cm_id(ch->ib_cm.cm_id);
			ch->ib_cm.cm_id = NULL;
		}
680 681
	}

B
Bart Van Assche 已提交
682 683 684 685
	/* If srp_new_cm_id() succeeded but srp_create_ch_ib() not, return. */
	if (!ch->qp)
		return;

686
	if (dev->use_fast_reg) {
687 688
		if (ch->fr_pool)
			srp_destroy_fr_pool(ch->fr_pool);
689
	} else if (dev->use_fmr) {
690 691
		if (ch->fmr_pool)
			ib_destroy_fmr_pool(ch->fmr_pool);
692
	}
C
Christoph Hellwig 已提交
693

694
	srp_destroy_qp(ch);
C
Christoph Hellwig 已提交
695 696
	ib_free_cq(ch->send_cq);
	ib_free_cq(ch->recv_cq);
697

B
Bart Van Assche 已提交
698 699 700 701 702 703 704 705
	/*
	 * 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;

706 707
	ch->qp = NULL;
	ch->send_cq = ch->recv_cq = NULL;
708

709
	if (ch->rx_ring) {
710
		for (i = 0; i < target->queue_size; ++i)
711 712 713
			srp_free_iu(target->srp_host, ch->rx_ring[i]);
		kfree(ch->rx_ring);
		ch->rx_ring = NULL;
714
	}
715
	if (ch->tx_ring) {
716
		for (i = 0; i < target->queue_size; ++i)
717 718 719
			srp_free_iu(target->srp_host, ch->tx_ring[i]);
		kfree(ch->tx_ring);
		ch->tx_ring = NULL;
720
	}
721 722 723
}

static void srp_path_rec_completion(int status,
724
				    struct sa_path_rec *pathrec,
725
				    void *ch_ptr)
726
{
727 728
	struct srp_rdma_ch *ch = ch_ptr;
	struct srp_target_port *target = ch->target;
729

730
	ch->status = status;
731
	if (status)
732 733
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "Got failed path rec status %d\n", status);
734
	else
B
Bart Van Assche 已提交
735
		ch->ib_cm.path = *pathrec;
736
	complete(&ch->done);
737 738
}

B
Bart Van Assche 已提交
739
static int srp_ib_lookup_path(struct srp_rdma_ch *ch)
740
{
741
	struct srp_target_port *target = ch->target;
742
	int ret;
743

B
Bart Van Assche 已提交
744
	ch->ib_cm.path.numb_path = 1;
745 746 747

	init_completion(&ch->done);

B
Bart Van Assche 已提交
748
	ch->ib_cm.path_query_id = ib_sa_path_rec_get(&srp_sa_client,
749 750
					       target->srp_host->srp_dev->dev,
					       target->srp_host->port,
B
Bart Van Assche 已提交
751
					       &ch->ib_cm.path,
752 753 754 755 756 757 758 759
					       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,
B
Bart Van Assche 已提交
760
					       ch, &ch->ib_cm.path_query);
761 762
	if (ch->ib_cm.path_query_id < 0)
		return ch->ib_cm.path_query_id;
763 764

	ret = wait_for_completion_interruptible(&ch->done);
765
	if (ret < 0)
766
		return ret;
767

768
	if (ch->status < 0)
769
		shost_printk(KERN_WARNING, target->scsi_host,
770
			     PFX "Path record query failed: sgid %pI6, dgid %pI6, pkey %#04x, service_id %#16llx\n",
B
Bart Van Assche 已提交
771 772 773
			     ch->ib_cm.path.sgid.raw, ch->ib_cm.path.dgid.raw,
			     be16_to_cpu(target->ib_cm.pkey),
			     be64_to_cpu(target->ib_cm.service_id));
774

775
	return ch->status;
776 777
}

B
Bart Van Assche 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
static int srp_rdma_lookup_path(struct srp_rdma_ch *ch)
{
	struct srp_target_port *target = ch->target;
	int ret;

	init_completion(&ch->done);

	ret = rdma_resolve_route(ch->rdma_cm.cm_id, SRP_PATH_REC_TIMEOUT_MS);
	if (ret)
		return ret;

	wait_for_completion_interruptible(&ch->done);

	if (ch->status != 0)
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Path resolution failed\n");

	return ch->status;
}

static int srp_lookup_path(struct srp_rdma_ch *ch)
{
	struct srp_target_port *target = ch->target;

	return target->using_rdma_cm ? srp_rdma_lookup_path(ch) :
		srp_ib_lookup_path(ch);
}

806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
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 已提交
823
static int srp_send_req(struct srp_rdma_ch *ch, bool multich)
824
{
825
	struct srp_target_port *target = ch->target;
826
	struct {
B
Bart Van Assche 已提交
827 828 829 830
		struct rdma_conn_param	  rdma_param;
		struct srp_login_req_rdma rdma_req;
		struct ib_cm_req_param	  ib_param;
		struct srp_login_req	  ib_req;
831
	} *req = NULL;
832
	char *ipi, *tpi;
833 834 835 836 837 838
	int status;

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

B
Bart Van Assche 已提交
839 840
	req->ib_param.flow_control = 1;
	req->ib_param.retry_count = target->tl_retry_count;
841 842 843 844 845

	/*
	 * Pick some arbitrary defaults here; we could make these
	 * module parameters if anyone cared about setting them.
	 */
B
Bart Van Assche 已提交
846 847 848 849 850 851 852 853
	req->ib_param.responder_resources = 4;
	req->ib_param.rnr_retry_count = 7;
	req->ib_param.max_cm_retries = 15;

	req->ib_req.opcode = SRP_LOGIN_REQ;
	req->ib_req.tag = 0;
	req->ib_req.req_it_iu_len = cpu_to_be32(target->max_iu_len);
	req->ib_req.req_buf_fmt	= cpu_to_be16(SRP_BUF_FORMAT_DIRECT |
854
					      SRP_BUF_FORMAT_INDIRECT);
B
Bart Van Assche 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
	req->ib_req.req_flags = (multich ? SRP_MULTICHAN_MULTI :
				 SRP_MULTICHAN_SINGLE);

	if (target->using_rdma_cm) {
		req->rdma_param.flow_control = req->ib_param.flow_control;
		req->rdma_param.responder_resources =
			req->ib_param.responder_resources;
		req->rdma_param.initiator_depth = req->ib_param.initiator_depth;
		req->rdma_param.retry_count = req->ib_param.retry_count;
		req->rdma_param.rnr_retry_count = req->ib_param.rnr_retry_count;
		req->rdma_param.private_data = &req->rdma_req;
		req->rdma_param.private_data_len = sizeof(req->rdma_req);

		req->rdma_req.opcode = req->ib_req.opcode;
		req->rdma_req.tag = req->ib_req.tag;
		req->rdma_req.req_it_iu_len = req->ib_req.req_it_iu_len;
		req->rdma_req.req_buf_fmt = req->ib_req.req_buf_fmt;
		req->rdma_req.req_flags	= req->ib_req.req_flags;

		ipi = req->rdma_req.initiator_port_id;
		tpi = req->rdma_req.target_port_id;
	} else {
877 878 879 880
		u8 subnet_timeout;

		subnet_timeout = srp_get_subnet_timeout(target->srp_host);

B
Bart Van Assche 已提交
881 882 883 884 885 886 887 888 889 890 891
		req->ib_param.primary_path = &ch->ib_cm.path;
		req->ib_param.alternate_path = NULL;
		req->ib_param.service_id = target->ib_cm.service_id;
		get_random_bytes(&req->ib_param.starting_psn, 4);
		req->ib_param.starting_psn &= 0xffffff;
		req->ib_param.qp_num = ch->qp->qp_num;
		req->ib_param.qp_type = ch->qp->qp_type;
		req->ib_param.local_cm_response_timeout = subnet_timeout + 2;
		req->ib_param.remote_cm_response_timeout = subnet_timeout + 2;
		req->ib_param.private_data = &req->ib_req;
		req->ib_param.private_data_len = sizeof(req->ib_req);
892

B
Bart Van Assche 已提交
893 894
		ipi = req->ib_req.initiator_port_id;
		tpi = req->ib_req.target_port_id;
895 896
	}

897
	/*
R
Roland Dreier 已提交
898
	 * In the published SRP specification (draft rev. 16a), the
899 900 901 902 903 904 905 906
	 * 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) {
907 908 909 910
		memcpy(ipi,     &target->sgid.global.interface_id, 8);
		memcpy(ipi + 8, &target->initiator_ext, 8);
		memcpy(tpi,     &target->ioc_guid, 8);
		memcpy(tpi + 8, &target->id_ext, 8);
911
	} else {
912 913 914 915
		memcpy(ipi,     &target->initiator_ext, 8);
		memcpy(ipi + 8, &target->sgid.global.interface_id, 8);
		memcpy(tpi,     &target->id_ext, 8);
		memcpy(tpi + 8, &target->ioc_guid, 8);
916 917
	}

918 919
	/*
	 * Topspin/Cisco SRP targets will reject our login unless we
920 921
	 * zero out the first 8 bytes of our initiator port ID and set
	 * the second 8 bytes to the local node GUID.
922
	 */
923
	if (srp_target_is_topspin(target)) {
924 925 926
		shost_printk(KERN_DEBUG, target->scsi_host,
			     PFX "Topspin/Cisco initiator port ID workaround "
			     "activated for target GUID %016llx\n",
927
			     be64_to_cpu(target->ioc_guid));
928 929
		memset(ipi, 0, 8);
		memcpy(ipi + 8, &target->srp_host->srp_dev->dev->node_guid, 8);
930 931
	}

B
Bart Van Assche 已提交
932 933 934 935
	if (target->using_rdma_cm)
		status = rdma_connect(ch->rdma_cm.cm_id, &req->rdma_param);
	else
		status = ib_send_cm_req(ch->ib_cm.cm_id, &req->ib_param);
936 937 938 939 940 941

	kfree(req);

	return status;
}

942 943 944 945 946 947 948 949 950 951 952 953
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)
954
		queue_work(srp_remove_wq, &target->remove_work);
955 956 957 958

	return changed;
}

959 960
static void srp_disconnect_target(struct srp_target_port *target)
{
B
Bart Van Assche 已提交
961
	struct srp_rdma_ch *ch;
B
Bart Van Assche 已提交
962
	int i, ret;
963

964
	/* XXX should send SRP_I_LOGOUT request */
965

966 967 968
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		ch->connected = false;
B
Bart Van Assche 已提交
969 970 971 972 973 974 975 976 977 978
		ret = 0;
		if (target->using_rdma_cm) {
			if (ch->rdma_cm.cm_id)
				rdma_disconnect(ch->rdma_cm.cm_id);
		} else {
			if (ch->ib_cm.cm_id)
				ret = ib_send_cm_dreq(ch->ib_cm.cm_id,
						      NULL, 0);
		}
		if (ret < 0) {
979 980
			shost_printk(KERN_DEBUG, target->scsi_host,
				     PFX "Sending CM DREQ failed\n");
981
		}
982
	}
983 984
}

985 986
static void srp_free_req_data(struct srp_target_port *target,
			      struct srp_rdma_ch *ch)
987
{
988 989
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = dev->dev;
990 991 992
	struct srp_request *req;
	int i;

993
	if (!ch->req_ring)
994 995 996
		return;

	for (i = 0; i < target->req_ring_size; ++i) {
997
		req = &ch->req_ring[i];
998
		if (dev->use_fast_reg) {
999
			kfree(req->fr_list);
1000
		} else {
1001
			kfree(req->fmr_list);
1002 1003
			kfree(req->map_page);
		}
1004 1005 1006 1007 1008 1009
		if (req->indirect_dma_addr) {
			ib_dma_unmap_single(ibdev, req->indirect_dma_addr,
					    target->indirect_size,
					    DMA_TO_DEVICE);
		}
		kfree(req->indirect_desc);
1010
	}
1011

1012 1013
	kfree(ch->req_ring);
	ch->req_ring = NULL;
1014 1015
}

1016
static int srp_alloc_req_data(struct srp_rdma_ch *ch)
1017
{
1018
	struct srp_target_port *target = ch->target;
1019 1020 1021
	struct srp_device *srp_dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = srp_dev->dev;
	struct srp_request *req;
1022
	void *mr_list;
1023 1024 1025
	dma_addr_t dma_addr;
	int i, ret = -ENOMEM;

1026 1027 1028
	ch->req_ring = kcalloc(target->req_ring_size, sizeof(*ch->req_ring),
			       GFP_KERNEL);
	if (!ch->req_ring)
1029 1030 1031
		goto out;

	for (i = 0; i < target->req_ring_size; ++i) {
1032
		req = &ch->req_ring[i];
1033
		mr_list = kmalloc(target->mr_per_cmd * sizeof(void *),
1034 1035 1036
				  GFP_KERNEL);
		if (!mr_list)
			goto out;
1037
		if (srp_dev->use_fast_reg) {
1038
			req->fr_list = mr_list;
1039
		} else {
1040
			req->fmr_list = mr_list;
1041 1042 1043 1044 1045
			req->map_page = kmalloc(srp_dev->max_pages_per_mr *
						sizeof(void *), GFP_KERNEL);
			if (!req->map_page)
				goto out;
		}
1046
		req->indirect_desc = kmalloc(target->indirect_size, GFP_KERNEL);
1047
		if (!req->indirect_desc)
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
			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;
}

1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
/**
 * 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);
}

1079 1080
static void srp_remove_target(struct srp_target_port *target)
{
B
Bart Van Assche 已提交
1081 1082
	struct srp_rdma_ch *ch;
	int i;
1083

1084 1085
	WARN_ON_ONCE(target->state != SRP_TARGET_REMOVED);

1086
	srp_del_scsi_host_attr(target->scsi_host);
1087
	srp_rport_get(target->rport);
1088 1089
	srp_remove_host(target->scsi_host);
	scsi_remove_host(target->scsi_host);
1090
	srp_stop_rport_timers(target->rport);
1091
	srp_disconnect_target(target);
B
Bart Van Assche 已提交
1092
	kobj_ns_drop(KOBJ_NS_TYPE_NET, target->net);
B
Bart Van Assche 已提交
1093 1094 1095 1096
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		srp_free_ch_ib(target, ch);
	}
1097
	cancel_work_sync(&target->tl_err_work);
1098
	srp_rport_put(target->rport);
B
Bart Van Assche 已提交
1099 1100 1101 1102 1103 1104
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		srp_free_req_data(target, ch);
	}
	kfree(target->ch);
	target->ch = NULL;
1105 1106 1107 1108 1109

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

1110 1111 1112
	scsi_host_put(target->scsi_host);
}

D
David Howells 已提交
1113
static void srp_remove_work(struct work_struct *work)
1114
{
D
David Howells 已提交
1115
	struct srp_target_port *target =
1116
		container_of(work, struct srp_target_port, remove_work);
1117

1118
	WARN_ON_ONCE(target->state != SRP_TARGET_REMOVED);
1119

1120
	srp_remove_target(target);
1121 1122
}

1123 1124 1125 1126 1127 1128 1129
static void srp_rport_delete(struct srp_rport *rport)
{
	struct srp_target_port *target = rport->lld_data;

	srp_queue_remove_work(target);
}

1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
/**
 * 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 已提交
1144
static int srp_connect_ch(struct srp_rdma_ch *ch, bool multich)
1145
{
1146
	struct srp_target_port *target = ch->target;
1147 1148
	int ret;

1149
	WARN_ON_ONCE(!multich && srp_connected_ch(target) > 0);
1150

1151
	ret = srp_lookup_path(ch);
1152
	if (ret)
B
Bart Van Assche 已提交
1153
		goto out;
1154 1155

	while (1) {
1156
		init_completion(&ch->done);
B
Bart Van Assche 已提交
1157
		ret = srp_send_req(ch, multich);
1158
		if (ret)
B
Bart Van Assche 已提交
1159
			goto out;
1160
		ret = wait_for_completion_interruptible(&ch->done);
1161
		if (ret < 0)
B
Bart Van Assche 已提交
1162
			goto out;
1163 1164 1165 1166 1167 1168 1169

		/*
		 * 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 已提交
1170 1171
		ret = ch->status;
		switch (ret) {
1172
		case 0:
1173
			ch->connected = true;
B
Bart Van Assche 已提交
1174
			goto out;
1175 1176

		case SRP_PORT_REDIRECT:
1177
			ret = srp_lookup_path(ch);
1178
			if (ret)
B
Bart Van Assche 已提交
1179
				goto out;
1180 1181 1182 1183 1184
			break;

		case SRP_DLID_REDIRECT:
			break;

D
David Dillow 已提交
1185 1186
		case SRP_STALE_CONN:
			shost_printk(KERN_ERR, target->scsi_host, PFX
1187
				     "giving up on stale connection\n");
B
Bart Van Assche 已提交
1188 1189
			ret = -ECONNRESET;
			goto out;
D
David Dillow 已提交
1190

1191
		default:
B
Bart Van Assche 已提交
1192
			goto out;
1193 1194
		}
	}
B
Bart Van Assche 已提交
1195 1196 1197

out:
	return ret <= 0 ? ret : -ENODEV;
1198 1199
}

C
Christoph Hellwig 已提交
1200 1201 1202 1203 1204 1205 1206
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)
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
{
	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 已提交
1217 1218
	wr.wr_cqe = &req->reg_cqe;
	req->reg_cqe.done = srp_inv_rkey_err_done;
1219
	return ib_post_send(ch->qp, &wr, &bad_wr);
1220 1221
}

1222
static void srp_unmap_data(struct scsi_cmnd *scmnd,
1223
			   struct srp_rdma_ch *ch,
1224 1225
			   struct srp_request *req)
{
1226
	struct srp_target_port *target = ch->target;
1227 1228 1229
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_device *ibdev = dev->dev;
	int i, res;
1230

1231
	if (!scsi_sglist(scmnd) ||
1232 1233 1234 1235
	    (scmnd->sc_data_direction != DMA_TO_DEVICE &&
	     scmnd->sc_data_direction != DMA_FROM_DEVICE))
		return;

1236 1237 1238 1239
	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 已提交
1240
			res = srp_inv_rkey(req, ch, (*pfr)->mr->rkey);
1241 1242 1243 1244 1245 1246 1247 1248 1249
			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)
1250
			srp_fr_pool_put(ch->fr_pool, req->fr_list,
1251
					req->nmdesc);
1252
	} else if (dev->use_fmr) {
1253 1254 1255 1256 1257
		struct ib_pool_fmr **pfmr;

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

1259 1260
	ib_dma_unmap_sg(ibdev, scsi_sglist(scmnd), scsi_sg_count(scmnd),
			scmnd->sc_data_direction);
1261 1262
}

B
Bart Van Assche 已提交
1263 1264
/**
 * srp_claim_req - Take ownership of the scmnd associated with a request.
1265
 * @ch: SRP RDMA channel.
B
Bart Van Assche 已提交
1266
 * @req: SRP request.
1267
 * @sdev: If not NULL, only take ownership for this SCSI device.
B
Bart Van Assche 已提交
1268 1269 1270 1271 1272 1273
 * @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.
 */
1274
static struct scsi_cmnd *srp_claim_req(struct srp_rdma_ch *ch,
B
Bart Van Assche 已提交
1275
				       struct srp_request *req,
1276
				       struct scsi_device *sdev,
B
Bart Van Assche 已提交
1277 1278 1279 1280
				       struct scsi_cmnd *scmnd)
{
	unsigned long flags;

1281
	spin_lock_irqsave(&ch->lock, flags);
1282 1283 1284
	if (req->scmnd &&
	    (!sdev || req->scmnd->device == sdev) &&
	    (!scmnd || req->scmnd == scmnd)) {
B
Bart Van Assche 已提交
1285 1286 1287 1288 1289
		scmnd = req->scmnd;
		req->scmnd = NULL;
	} else {
		scmnd = NULL;
	}
1290
	spin_unlock_irqrestore(&ch->lock, flags);
B
Bart Van Assche 已提交
1291 1292 1293 1294 1295

	return scmnd;
}

/**
B
Bart Van Assche 已提交
1296
 * srp_free_req() - Unmap data and adjust ch->req_lim.
1297
 * @ch:     SRP RDMA channel.
1298 1299 1300
 * @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 已提交
1301
 */
1302 1303
static void srp_free_req(struct srp_rdma_ch *ch, struct srp_request *req,
			 struct scsi_cmnd *scmnd, s32 req_lim_delta)
1304
{
1305 1306
	unsigned long flags;

1307
	srp_unmap_data(scmnd, ch, req);
B
Bart Van Assche 已提交
1308

1309 1310 1311
	spin_lock_irqsave(&ch->lock, flags);
	ch->req_lim += req_lim_delta;
	spin_unlock_irqrestore(&ch->lock, flags);
1312 1313
}

1314 1315
static void srp_finish_req(struct srp_rdma_ch *ch, struct srp_request *req,
			   struct scsi_device *sdev, int result)
1316
{
1317
	struct scsi_cmnd *scmnd = srp_claim_req(ch, req, sdev, NULL);
B
Bart Van Assche 已提交
1318 1319

	if (scmnd) {
1320
		srp_free_req(ch, req, scmnd, 0);
1321
		scmnd->result = result;
B
Bart Van Assche 已提交
1322 1323
		scmnd->scsi_done(scmnd);
	}
1324 1325
}

1326
static void srp_terminate_io(struct srp_rport *rport)
1327
{
1328
	struct srp_target_port *target = rport->lld_data;
B
Bart Van Assche 已提交
1329
	struct srp_rdma_ch *ch;
1330 1331
	struct Scsi_Host *shost = target->scsi_host;
	struct scsi_device *sdev;
B
Bart Van Assche 已提交
1332
	int i, j;
1333

1334 1335 1336 1337 1338 1339 1340
	/*
	 * 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 已提交
1341 1342
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
1343

B
Bart Van Assche 已提交
1344 1345 1346 1347 1348 1349
		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);
		}
1350 1351
	}
}
1352

1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364
/*
 * 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 已提交
1365 1366 1367
	struct srp_rdma_ch *ch;
	int i, j, ret = 0;
	bool multich = false;
1368

1369
	srp_disconnect_target(target);
1370 1371 1372 1373

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

1374
	/*
1375 1376 1377
	 * 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.
1378
	 */
B
Bart Van Assche 已提交
1379 1380 1381
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		ret += srp_new_cm_id(ch);
1382
	}
B
Bart Van Assche 已提交
1383 1384 1385 1386
	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];
1387

B
Bart Van Assche 已提交
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
			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);
1399

B
Bart Van Assche 已提交
1400 1401 1402 1403
		INIT_LIST_HEAD(&ch->free_tx);
		for (j = 0; j < target->queue_size; ++j)
			list_add(&ch->tx_ring[j]->list, &ch->free_tx);
	}
1404 1405 1406

	target->qp_in_error = false;

B
Bart Van Assche 已提交
1407 1408
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
1409
		if (ret)
B
Bart Van Assche 已提交
1410 1411 1412 1413
			break;
		ret = srp_connect_ch(ch, multich);
		multich = true;
	}
1414

1415 1416 1417
	if (ret == 0)
		shost_printk(KERN_INFO, target->scsi_host,
			     PFX "reconnect succeeded\n");
1418 1419 1420 1421

	return ret;
}

1422 1423
static void srp_map_desc(struct srp_map_state *state, dma_addr_t dma_addr,
			 unsigned int dma_len, u32 rkey)
1424
{
1425
	struct srp_direct_buf *desc = state->desc;
1426

1427 1428
	WARN_ON_ONCE(!dma_len);

1429 1430 1431
	desc->va = cpu_to_be64(dma_addr);
	desc->key = cpu_to_be32(rkey);
	desc->len = cpu_to_be32(dma_len);
1432

1433 1434 1435 1436
	state->total_len += dma_len;
	state->desc++;
	state->ndesc++;
}
1437

1438
static int srp_map_finish_fmr(struct srp_map_state *state,
1439
			      struct srp_rdma_ch *ch)
1440
{
1441 1442
	struct srp_target_port *target = ch->target;
	struct srp_device *dev = target->srp_host->srp_dev;
1443 1444
	struct ib_pool_fmr *fmr;
	u64 io_addr = 0;
1445

1446 1447 1448 1449
	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);
1450
		return -ENOMEM;
1451
	}
1452

S
Sagi Grimberg 已提交
1453 1454 1455 1456 1457
	WARN_ON_ONCE(!dev->use_fmr);

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

B
Bart Van Assche 已提交
1458
	if (state->npages == 1 && target->global_rkey) {
S
Sagi Grimberg 已提交
1459
		srp_map_desc(state, state->base_dma_addr, state->dma_len,
B
Bart Van Assche 已提交
1460
			     target->global_rkey);
S
Sagi Grimberg 已提交
1461 1462 1463
		goto reset_state;
	}

1464
	fmr = ib_fmr_pool_map_phys(ch->fmr_pool, state->pages,
1465 1466 1467
				   state->npages, io_addr);
	if (IS_ERR(fmr))
		return PTR_ERR(fmr);
1468

1469
	*state->fmr.next++ = fmr;
1470
	state->nmdesc++;
1471

1472 1473
	srp_map_desc(state, state->base_dma_addr & ~dev->mr_page_mask,
		     state->dma_len, fmr->fmr->rkey);
1474

S
Sagi Grimberg 已提交
1475 1476 1477 1478
reset_state:
	state->npages = 0;
	state->dma_len = 0;

1479 1480 1481
	return 0;
}

C
Christoph Hellwig 已提交
1482 1483 1484 1485 1486
static void srp_reg_mr_err_done(struct ib_cq *cq, struct ib_wc *wc)
{
	srp_handle_qp_err(cq, wc, "FAST REG");
}

1487 1488 1489 1490 1491 1492
/*
 * 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.
 */
1493
static int srp_map_finish_fr(struct srp_map_state *state,
C
Christoph Hellwig 已提交
1494
			     struct srp_request *req,
1495 1496
			     struct srp_rdma_ch *ch, int sg_nents,
			     unsigned int *sg_offset_p)
1497
{
1498
	struct srp_target_port *target = ch->target;
1499 1500
	struct srp_device *dev = target->srp_host->srp_dev;
	struct ib_send_wr *bad_wr;
1501
	struct ib_reg_wr wr;
1502 1503
	struct srp_fr_desc *desc;
	u32 rkey;
1504
	int n, err;
1505

1506 1507 1508 1509
	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);
1510
		return -ENOMEM;
1511
	}
1512

S
Sagi Grimberg 已提交
1513 1514
	WARN_ON_ONCE(!dev->use_fast_reg);

B
Bart Van Assche 已提交
1515
	if (sg_nents == 1 && target->global_rkey) {
1516 1517 1518 1519
		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 已提交
1520
			     target->global_rkey);
1521 1522
		if (sg_offset_p)
			*sg_offset_p = 0;
1523
		return 1;
S
Sagi Grimberg 已提交
1524 1525
	}

1526
	desc = srp_fr_pool_get(ch->fr_pool);
1527 1528 1529 1530 1531 1532
	if (!desc)
		return -ENOMEM;

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

1533 1534
	n = ib_map_mr_sg(desc->mr, state->sg, sg_nents, sg_offset_p,
			 dev->mr_page_size);
1535 1536
	if (unlikely(n < 0)) {
		srp_fr_pool_put(ch->fr_pool, &desc, 1);
1537
		pr_debug("%s: ib_map_mr_sg(%d, %d) returned %d.\n",
1538
			 dev_name(&req->scmnd->device->sdev_gendev), sg_nents,
1539
			 sg_offset_p ? *sg_offset_p : -1, n);
1540
		return n;
1541
	}
1542

1543
	WARN_ON_ONCE(desc->mr->length == 0);
1544

C
Christoph Hellwig 已提交
1545 1546
	req->reg_cqe.done = srp_reg_mr_err_done;

1547 1548
	wr.wr.next = NULL;
	wr.wr.opcode = IB_WR_REG_MR;
C
Christoph Hellwig 已提交
1549
	wr.wr.wr_cqe = &req->reg_cqe;
1550 1551 1552 1553 1554 1555 1556
	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);
1557

1558
	*state->fr.next++ = desc;
1559 1560
	state->nmdesc++;

1561 1562
	srp_map_desc(state, desc->mr->iova,
		     desc->mr->length, desc->mr->rkey);
1563

S
Sagi Grimberg 已提交
1564
	err = ib_post_send(ch->qp, &wr.wr, &bad_wr);
1565 1566
	if (unlikely(err)) {
		WARN_ON_ONCE(err == -ENOMEM);
S
Sagi Grimberg 已提交
1567
		return err;
1568
	}
S
Sagi Grimberg 已提交
1569

1570
	return n;
1571 1572
}

1573
static int srp_map_sg_entry(struct srp_map_state *state,
1574
			    struct srp_rdma_ch *ch,
1575
			    struct scatterlist *sg)
1576
{
1577
	struct srp_target_port *target = ch->target;
1578 1579 1580 1581
	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);
1582
	unsigned int len = 0;
1583 1584
	int ret;

1585
	WARN_ON_ONCE(!dma_len);
1586

1587
	while (dma_len) {
1588
		unsigned offset = dma_addr & ~dev->mr_page_mask;
1589 1590 1591

		if (state->npages == dev->max_pages_per_mr ||
		    (state->npages > 0 && offset != 0)) {
1592
			ret = srp_map_finish_fmr(state, ch);
1593 1594 1595 1596
			if (ret)
				return ret;
		}

1597
		len = min_t(unsigned int, dma_len, dev->mr_page_size - offset);
1598

1599 1600
		if (!state->npages)
			state->base_dma_addr = dma_addr;
1601
		state->pages[state->npages++] = dma_addr & dev->mr_page_mask;
1602
		state->dma_len += len;
1603 1604 1605 1606
		dma_addr += len;
		dma_len -= len;
	}

1607
	/*
1608
	 * If the end of the MR is not on a page boundary then we need to
1609
	 * close it out and start a new one -- we can only merge at page
1610
	 * boundaries.
1611 1612
	 */
	ret = 0;
1613
	if ((dma_addr & ~dev->mr_page_mask) != 0)
1614
		ret = srp_map_finish_fmr(state, ch);
1615 1616 1617
	return ret;
}

S
Sagi Grimberg 已提交
1618 1619 1620
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)
1621 1622
{
	struct scatterlist *sg;
1623
	int i, ret;
1624

S
Sagi Grimberg 已提交
1625 1626
	state->pages = req->map_page;
	state->fmr.next = req->fmr_list;
1627
	state->fmr.end = req->fmr_list + ch->target->mr_per_cmd;
S
Sagi Grimberg 已提交
1628 1629

	for_each_sg(scat, sg, count, i) {
1630
		ret = srp_map_sg_entry(state, ch, sg);
S
Sagi Grimberg 已提交
1631 1632
		if (ret)
			return ret;
1633
	}
1634

1635
	ret = srp_map_finish_fmr(state, ch);
S
Sagi Grimberg 已提交
1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
	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)
{
1646 1647
	unsigned int sg_offset = 0;

1648
	state->fr.next = req->fr_list;
1649
	state->fr.end = req->fr_list + ch->target->mr_per_cmd;
1650
	state->sg = scat;
S
Sagi Grimberg 已提交
1651

1652 1653 1654
	if (count == 0)
		return 0;

B
Bart Van Assche 已提交
1655
	while (count) {
1656
		int i, n;
S
Sagi Grimberg 已提交
1657

1658
		n = srp_map_finish_fr(state, req, ch, count, &sg_offset);
1659 1660 1661
		if (unlikely(n < 0))
			return n;

B
Bart Van Assche 已提交
1662
		count -= n;
1663 1664 1665
		for (i = 0; i < n; i++)
			state->sg = sg_next(state->sg);
	}
S
Sagi Grimberg 已提交
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681

	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 已提交
1682
			     target->global_rkey);
1683
	}
1684

S
Sagi Grimberg 已提交
1685
	return 0;
1686 1687
}

1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703
/*
 * 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];
1704
	struct scatterlist idb_sg[1];
1705 1706 1707 1708 1709 1710 1711 1712 1713
	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;
1714 1715 1716

	if (dev->use_fast_reg) {
		state.sg = idb_sg;
1717
		sg_init_one(idb_sg, req->indirect_desc, idb_len);
1718
		idb_sg->dma_address = req->indirect_dma_addr; /* hack! */
1719 1720 1721
#ifdef CONFIG_NEED_SG_DMA_LENGTH
		idb_sg->dma_length = idb_sg->length;	      /* hack^2 */
#endif
1722
		ret = srp_map_finish_fr(&state, req, ch, 1, NULL);
1723 1724
		if (ret < 0)
			return ret;
1725
		WARN_ON_ONCE(ret < 1);
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
	} 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;
	}
1737 1738 1739

	*idb_rkey = idb_desc.key;

1740
	return 0;
1741 1742
}

1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
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);
}

1767 1768 1769 1770 1771 1772 1773 1774 1775
/**
 * 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.
 */
1776
static int srp_map_data(struct scsi_cmnd *scmnd, struct srp_rdma_ch *ch,
1777 1778
			struct srp_request *req)
{
1779
	struct srp_target_port *target = ch->target;
1780
	struct scatterlist *scat;
1781
	struct srp_cmd *cmd = req->cmd->buf;
1782
	int len, nents, count, ret;
1783 1784
	struct srp_device *dev;
	struct ib_device *ibdev;
1785 1786
	struct srp_map_state state;
	struct srp_indirect_buf *indirect_hdr;
1787 1788
	u32 idb_len, table_len;
	__be32 idb_rkey;
1789
	u8 fmt;
1790

1791
	if (!scsi_sglist(scmnd) || scmnd->sc_data_direction == DMA_NONE)
1792 1793 1794 1795
		return sizeof (struct srp_cmd);

	if (scmnd->sc_data_direction != DMA_FROM_DEVICE &&
	    scmnd->sc_data_direction != DMA_TO_DEVICE) {
1796 1797 1798
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled data direction %d\n",
			     scmnd->sc_data_direction);
1799 1800 1801
		return -EINVAL;
	}

1802 1803
	nents = scsi_sg_count(scmnd);
	scat  = scsi_sglist(scmnd);
1804

1805
	dev = target->srp_host->srp_dev;
1806 1807 1808
	ibdev = dev->dev;

	count = ib_dma_map_sg(ibdev, scat, nents, scmnd->sc_data_direction);
1809 1810
	if (unlikely(count == 0))
		return -EIO;
1811 1812 1813

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

B
Bart Van Assche 已提交
1815
	if (count == 1 && target->global_rkey) {
1816 1817 1818 1819 1820 1821
		/*
		 * 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.
		 */
1822
		struct srp_direct_buf *buf = (void *) cmd->add_data;
1823

1824
		buf->va  = cpu_to_be64(ib_sg_dma_address(ibdev, scat));
B
Bart Van Assche 已提交
1825
		buf->key = cpu_to_be32(target->global_rkey);
1826
		buf->len = cpu_to_be32(ib_sg_dma_len(ibdev, scat));
1827

1828
		req->nmdesc = 0;
1829 1830 1831
		goto map_complete;
	}

1832 1833 1834
	/*
	 * We have more than one scatter/gather entry, so build our indirect
	 * descriptor table, trying to merge as many entries as we can.
1835 1836 1837
	 */
	indirect_hdr = (void *) cmd->add_data;

1838 1839 1840
	ib_dma_sync_single_for_cpu(ibdev, req->indirect_dma_addr,
				   target->indirect_size, DMA_TO_DEVICE);

1841
	memset(&state, 0, sizeof(state));
B
Bart Van Assche 已提交
1842
	state.desc = req->indirect_desc;
S
Sagi Grimberg 已提交
1843
	if (dev->use_fast_reg)
1844
		ret = srp_map_sg_fr(&state, ch, req, scat, count);
S
Sagi Grimberg 已提交
1845
	else if (dev->use_fmr)
1846
		ret = srp_map_sg_fmr(&state, ch, req, scat, count);
S
Sagi Grimberg 已提交
1847
	else
1848 1849 1850 1851
		ret = srp_map_sg_dma(&state, ch, req, scat, count);
	req->nmdesc = state.nmdesc;
	if (ret < 0)
		goto unmap;
1852

1853 1854 1855
	{
		DEFINE_DYNAMIC_DEBUG_METADATA(ddm,
			"Memory mapping consistency check");
1856
		if (DYNAMIC_DEBUG_BRANCH(ddm))
1857 1858
			srp_check_mapping(&state, ch, req, scat, count);
	}
1859

1860 1861 1862 1863 1864
	/* 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.
1865 1866
	 */
	if (state.ndesc == 1) {
1867 1868
		/*
		 * Memory registration collapsed the sg-list into one entry,
1869 1870 1871
		 * so use a direct descriptor.
		 */
		struct srp_direct_buf *buf = (void *) cmd->add_data;
1872

1873
		*buf = req->indirect_desc[0];
1874
		goto map_complete;
1875 1876
	}

1877 1878 1879 1880
	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");
1881 1882
		ret = -EIO;
		goto unmap;
1883 1884 1885
	}

	count = min(state.ndesc, target->cmd_sg_cnt);
1886
	table_len = state.ndesc * sizeof (struct srp_direct_buf);
1887
	idb_len = sizeof(struct srp_indirect_buf) + table_len;
1888 1889 1890

	fmt = SRP_DATA_DESC_INDIRECT;
	len = sizeof(struct srp_cmd) + sizeof (struct srp_indirect_buf);
1891
	len += count * sizeof (struct srp_direct_buf);
1892

1893 1894
	memcpy(indirect_hdr->desc_list, req->indirect_desc,
	       count * sizeof (struct srp_direct_buf));
1895

B
Bart Van Assche 已提交
1896
	if (!target->global_rkey) {
1897 1898 1899
		ret = srp_map_idb(ch, req, state.gen.next, state.gen.end,
				  idb_len, &idb_rkey);
		if (ret < 0)
1900
			goto unmap;
1901 1902
		req->nmdesc++;
	} else {
B
Bart Van Assche 已提交
1903
		idb_rkey = cpu_to_be32(target->global_rkey);
1904 1905
	}

1906
	indirect_hdr->table_desc.va = cpu_to_be64(req->indirect_dma_addr);
1907
	indirect_hdr->table_desc.key = idb_rkey;
1908 1909 1910 1911
	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)
1912
		cmd->data_out_desc_cnt = count;
1913
	else
1914 1915 1916 1917
		cmd->data_in_desc_cnt = count;

	ib_dma_sync_single_for_device(ibdev, req->indirect_dma_addr, table_len,
				      DMA_TO_DEVICE);
1918 1919

map_complete:
1920 1921 1922 1923 1924 1925
	if (scmnd->sc_data_direction == DMA_TO_DEVICE)
		cmd->buf_fmt = fmt << 4;
	else
		cmd->buf_fmt = fmt;

	return len;
1926 1927 1928

unmap:
	srp_unmap_data(scmnd, ch, req);
1929 1930
	if (ret == -ENOMEM && req->nmdesc >= target->mr_pool_size)
		ret = -E2BIG;
1931
	return ret;
1932 1933
}

1934 1935 1936
/*
 * Return an IU and possible credit to the free pool
 */
1937
static void srp_put_tx_iu(struct srp_rdma_ch *ch, struct srp_iu *iu,
1938 1939 1940 1941
			  enum srp_iu_type iu_type)
{
	unsigned long flags;

1942 1943
	spin_lock_irqsave(&ch->lock, flags);
	list_add(&iu->list, &ch->free_tx);
1944
	if (iu_type != SRP_IU_RSP)
1945 1946
		++ch->req_lim;
	spin_unlock_irqrestore(&ch->lock, flags);
1947 1948
}

1949
/*
1950
 * Must be called with ch->lock held to protect req_lim and free_tx.
1951
 * If IU is not sent, it must be returned using srp_put_tx_iu().
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
 *
 * 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.
 */
1962
static struct srp_iu *__srp_get_tx_iu(struct srp_rdma_ch *ch,
1963 1964
				      enum srp_iu_type iu_type)
{
1965
	struct srp_target_port *target = ch->target;
1966 1967 1968
	s32 rsv = (iu_type == SRP_IU_TSK_MGMT) ? 0 : SRP_TSK_MGMT_SQ_SIZE;
	struct srp_iu *iu;

1969 1970
	lockdep_assert_held(&ch->lock);

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

1973
	if (list_empty(&ch->free_tx))
1974 1975 1976
		return NULL;

	/* Initiator responses to target requests do not consume credits */
1977
	if (iu_type != SRP_IU_RSP) {
1978
		if (ch->req_lim <= rsv) {
1979 1980 1981 1982
			++target->zero_req_lim;
			return NULL;
		}

1983
		--ch->req_lim;
1984 1985
	}

1986
	iu = list_first_entry(&ch->free_tx, struct srp_iu, list);
1987
	list_del(&iu->list);
1988 1989 1990
	return iu;
}

1991 1992 1993 1994 1995
/*
 * 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 已提交
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
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;
	}

2006 2007
	lockdep_assert_held(&ch->lock);

C
Christoph Hellwig 已提交
2008 2009 2010
	list_add(&iu->list, &ch->free_tx);
}

2011
static int srp_post_send(struct srp_rdma_ch *ch, struct srp_iu *iu, int len)
2012
{
2013
	struct srp_target_port *target = ch->target;
2014 2015 2016 2017 2018
	struct ib_sge list;
	struct ib_send_wr wr, *bad_wr;

	list.addr   = iu->dma;
	list.length = len;
2019
	list.lkey   = target->lkey;
2020

C
Christoph Hellwig 已提交
2021 2022
	iu->cqe.done = srp_send_done;

2023
	wr.next       = NULL;
C
Christoph Hellwig 已提交
2024
	wr.wr_cqe     = &iu->cqe;
2025 2026 2027 2028 2029
	wr.sg_list    = &list;
	wr.num_sge    = 1;
	wr.opcode     = IB_WR_SEND;
	wr.send_flags = IB_SEND_SIGNALED;

2030
	return ib_post_send(ch->qp, &wr, &bad_wr);
2031 2032
}

2033
static int srp_post_recv(struct srp_rdma_ch *ch, struct srp_iu *iu)
2034
{
2035
	struct srp_target_port *target = ch->target;
2036
	struct ib_recv_wr wr, *bad_wr;
2037
	struct ib_sge list;
2038 2039 2040

	list.addr   = iu->dma;
	list.length = iu->size;
2041
	list.lkey   = target->lkey;
2042

C
Christoph Hellwig 已提交
2043 2044
	iu->cqe.done = srp_recv_done;

2045
	wr.next     = NULL;
C
Christoph Hellwig 已提交
2046
	wr.wr_cqe   = &iu->cqe;
2047 2048 2049
	wr.sg_list  = &list;
	wr.num_sge  = 1;

2050
	return ib_post_recv(ch->qp, &wr, &bad_wr);
2051 2052
}

2053
static void srp_process_rsp(struct srp_rdma_ch *ch, struct srp_rsp *rsp)
2054
{
2055
	struct srp_target_port *target = ch->target;
2056 2057 2058 2059 2060
	struct srp_request *req;
	struct scsi_cmnd *scmnd;
	unsigned long flags;

	if (unlikely(rsp->tag & SRP_TAG_TSK_MGMT)) {
2061 2062
		spin_lock_irqsave(&ch->lock, flags);
		ch->req_lim += be32_to_cpu(rsp->req_lim_delta);
2063 2064 2065 2066 2067 2068 2069 2070 2071 2072
		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);
		}
2073
		spin_unlock_irqrestore(&ch->lock, flags);
2074
	} else {
B
Bart Van Assche 已提交
2075
		scmnd = scsi_host_find_tag(target->scsi_host, rsp->tag);
2076
		if (scmnd && scmnd->host_scribble) {
B
Bart Van Assche 已提交
2077 2078
			req = (void *)scmnd->host_scribble;
			scmnd = srp_claim_req(ch, req, NULL, scmnd);
2079 2080
		} else {
			scmnd = NULL;
B
Bart Van Assche 已提交
2081
		}
B
Bart Van Assche 已提交
2082
		if (!scmnd) {
2083
			shost_printk(KERN_ERR, target->scsi_host,
B
Bart Van Assche 已提交
2084 2085
				     "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 已提交
2086

2087 2088 2089
			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 已提交
2090 2091 2092

			return;
		}
2093 2094 2095 2096 2097 2098 2099 2100 2101
		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 已提交
2102
		if (unlikely(rsp->flags & SRP_RSP_FLAG_DIUNDER))
2103
			scsi_set_resid(scmnd, be32_to_cpu(rsp->data_in_res_cnt));
B
Bart Van Assche 已提交
2104 2105 2106 2107 2108 2109
		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));
2110

2111
		srp_free_req(ch, req, scmnd,
B
Bart Van Assche 已提交
2112 2113
			     be32_to_cpu(rsp->req_lim_delta));

2114 2115
		scmnd->host_scribble = NULL;
		scmnd->scsi_done(scmnd);
2116 2117 2118
	}
}

2119
static int srp_response_common(struct srp_rdma_ch *ch, s32 req_delta,
2120 2121
			       void *rsp, int len)
{
2122
	struct srp_target_port *target = ch->target;
2123
	struct ib_device *dev = target->srp_host->srp_dev->dev;
2124 2125
	unsigned long flags;
	struct srp_iu *iu;
2126
	int err;
2127

2128 2129 2130 2131
	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);
2132

2133 2134 2135
	if (!iu) {
		shost_printk(KERN_ERR, target->scsi_host, PFX
			     "no IU available to send response\n");
2136
		return 1;
2137 2138 2139 2140 2141 2142
	}

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

2143
	err = srp_post_send(ch, iu, len);
2144
	if (err) {
2145 2146
		shost_printk(KERN_ERR, target->scsi_host, PFX
			     "unable to post response: %d\n", err);
2147
		srp_put_tx_iu(ch, iu, SRP_IU_RSP);
2148
	}
2149 2150 2151 2152

	return err;
}

2153
static void srp_process_cred_req(struct srp_rdma_ch *ch,
2154 2155 2156 2157 2158 2159 2160 2161
				 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);

2162 2163
	if (srp_response_common(ch, delta, &rsp, sizeof(rsp)))
		shost_printk(KERN_ERR, ch->target->scsi_host, PFX
2164 2165 2166
			     "problems processing SRP_CRED_REQ\n");
}

2167
static void srp_process_aer_req(struct srp_rdma_ch *ch,
2168 2169
				struct srp_aer_req *req)
{
2170
	struct srp_target_port *target = ch->target;
2171 2172 2173 2174 2175 2176 2177
	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 已提交
2178
		     "ignoring AER for LUN %llu\n", scsilun_to_int(&req->lun));
2179

2180
	if (srp_response_common(ch, delta, &rsp, sizeof(rsp)))
2181 2182 2183 2184
		shost_printk(KERN_ERR, target->scsi_host, PFX
			     "problems processing SRP_AER_REQ\n");
}

C
Christoph Hellwig 已提交
2185
static void srp_recv_done(struct ib_cq *cq, struct ib_wc *wc)
2186
{
C
Christoph Hellwig 已提交
2187 2188
	struct srp_iu *iu = container_of(wc->wr_cqe, struct srp_iu, cqe);
	struct srp_rdma_ch *ch = cq->cq_context;
2189
	struct srp_target_port *target = ch->target;
2190
	struct ib_device *dev = target->srp_host->srp_dev->dev;
2191
	int res;
2192 2193
	u8 opcode;

C
Christoph Hellwig 已提交
2194 2195 2196 2197 2198
	if (unlikely(wc->status != IB_WC_SUCCESS)) {
		srp_handle_qp_err(cq, wc, "RECV");
		return;
	}

2199
	ib_dma_sync_single_for_cpu(dev, iu->dma, ch->max_ti_iu_len,
2200
				   DMA_FROM_DEVICE);
2201 2202 2203 2204

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

	if (0) {
2205 2206
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "recv completion, opcode 0x%02x\n", opcode);
B
Bart Van Assche 已提交
2207 2208
		print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 8, 1,
			       iu->buf, wc->byte_len, true);
2209 2210 2211 2212
	}

	switch (opcode) {
	case SRP_RSP:
2213
		srp_process_rsp(ch, iu->buf);
2214 2215
		break;

2216
	case SRP_CRED_REQ:
2217
		srp_process_cred_req(ch, iu->buf);
2218 2219 2220
		break;

	case SRP_AER_REQ:
2221
		srp_process_aer_req(ch, iu->buf);
2222 2223
		break;

2224 2225
	case SRP_T_LOGOUT:
		/* XXX Handle target logout */
2226 2227
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Got target logout request\n");
2228 2229 2230
		break;

	default:
2231 2232
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled SRP opcode 0x%02x\n", opcode);
2233 2234 2235
		break;
	}

2236
	ib_dma_sync_single_for_device(dev, iu->dma, ch->max_ti_iu_len,
2237
				      DMA_FROM_DEVICE);
2238

2239
	res = srp_post_recv(ch, iu);
2240 2241 2242
	if (res != 0)
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "Recv failed with error code %d\n", res);
2243 2244
}

2245 2246
/**
 * srp_tl_err_work() - handle a transport layer error
2247
 * @work: Work structure embedded in an SRP target port.
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
 *
 * 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 已提交
2261 2262
static void srp_handle_qp_err(struct ib_cq *cq, struct ib_wc *wc,
		const char *opname)
2263
{
C
Christoph Hellwig 已提交
2264
	struct srp_rdma_ch *ch = cq->cq_context;
2265 2266
	struct srp_target_port *target = ch->target;

2267
	if (ch->connected && !target->qp_in_error) {
C
Christoph Hellwig 已提交
2268 2269 2270 2271
		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);
2272
		queue_work(system_long_wq, &target->tl_err_work);
2273
	}
2274 2275 2276
	target->qp_in_error = true;
}

2277
static int srp_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scmnd)
2278
{
2279
	struct srp_target_port *target = host_to_target(shost);
2280
	struct srp_rport *rport = target->rport;
2281
	struct srp_rdma_ch *ch;
2282 2283 2284
	struct srp_request *req;
	struct srp_iu *iu;
	struct srp_cmd *cmd;
2285
	struct ib_device *dev;
2286
	unsigned long flags;
B
Bart Van Assche 已提交
2287 2288
	u32 tag;
	u16 idx;
2289
	int len, ret;
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
	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);
2300

2301 2302 2303
	scmnd->result = srp_chkready(target->rport);
	if (unlikely(scmnd->result))
		goto err;
2304

B
Bart Van Assche 已提交
2305 2306
	WARN_ON_ONCE(scmnd->request->tag < 0);
	tag = blk_mq_unique_tag(scmnd->request);
B
Bart Van Assche 已提交
2307
	ch = &target->ch[blk_mq_unique_tag_to_hwq(tag)];
B
Bart Van Assche 已提交
2308 2309 2310 2311
	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);
2312 2313 2314 2315

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

B
Bart Van Assche 已提交
2317 2318 2319 2320
	if (!iu)
		goto err;

	req = &ch->req_ring[idx];
2321
	dev = target->srp_host->srp_dev->dev;
2322
	ib_dma_sync_single_for_cpu(dev, iu->dma, target->max_iu_len,
2323
				   DMA_TO_DEVICE);
2324

2325
	scmnd->host_scribble = (void *) req;
2326 2327 2328 2329 2330

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

	cmd->opcode = SRP_CMD;
B
Bart Van Assche 已提交
2331
	int_to_scsilun(scmnd->device->lun, &cmd->lun);
B
Bart Van Assche 已提交
2332
	cmd->tag    = tag;
2333 2334 2335 2336 2337
	memcpy(cmd->cdb, scmnd->cmnd, scmnd->cmd_len);

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

2338
	len = srp_map_data(scmnd, ch, req);
2339
	if (len < 0) {
2340
		shost_printk(KERN_ERR, target->scsi_host,
2341 2342 2343 2344
			     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
2345
		 * max_pages_per_mr sg-list elements, tell the SCSI mid-layer
2346 2347 2348 2349
		 * to reduce queue depth temporarily.
		 */
		scmnd->result = len == -ENOMEM ?
			DID_OK << 16 | QUEUE_FULL << 1 : DID_ERROR << 16;
2350
		goto err_iu;
2351 2352
	}

2353
	ib_dma_sync_single_for_device(dev, iu->dma, target->max_iu_len,
2354
				      DMA_TO_DEVICE);
2355

2356
	if (srp_post_send(ch, iu, len)) {
2357
		shost_printk(KERN_ERR, target->scsi_host, PFX "Send failed\n");
2358 2359 2360
		goto err_unmap;
	}

2361 2362
	ret = 0;

2363 2364 2365 2366
unlock_rport:
	if (in_scsi_eh)
		mutex_unlock(&rport->mutex);

2367
	return ret;
2368 2369

err_unmap:
2370
	srp_unmap_data(scmnd, ch, req);
2371

2372
err_iu:
2373
	srp_put_tx_iu(ch, iu, SRP_IU_CMD);
2374

2375 2376 2377 2378 2379 2380
	/*
	 * Avoid that the loops that iterate over the request ring can
	 * encounter a dangling SCSI command pointer.
	 */
	req->scmnd = NULL;

2381 2382 2383 2384 2385 2386 2387
err:
	if (scmnd->result) {
		scmnd->scsi_done(scmnd);
		ret = 0;
	} else {
		ret = SCSI_MLQUEUE_HOST_BUSY;
	}
2388

2389
	goto unlock_rport;
2390 2391
}

2392 2393
/*
 * Note: the resources allocated in this function are freed in
2394
 * srp_free_ch_ib().
2395
 */
2396
static int srp_alloc_iu_bufs(struct srp_rdma_ch *ch)
2397
{
2398
	struct srp_target_port *target = ch->target;
2399 2400
	int i;

2401 2402 2403
	ch->rx_ring = kcalloc(target->queue_size, sizeof(*ch->rx_ring),
			      GFP_KERNEL);
	if (!ch->rx_ring)
2404
		goto err_no_ring;
2405 2406 2407
	ch->tx_ring = kcalloc(target->queue_size, sizeof(*ch->tx_ring),
			      GFP_KERNEL);
	if (!ch->tx_ring)
2408 2409 2410
		goto err_no_ring;

	for (i = 0; i < target->queue_size; ++i) {
2411 2412 2413 2414
		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])
2415 2416 2417
			goto err;
	}

2418
	for (i = 0; i < target->queue_size; ++i) {
2419 2420 2421 2422
		ch->tx_ring[i] = srp_alloc_iu(target->srp_host,
					      target->max_iu_len,
					      GFP_KERNEL, DMA_TO_DEVICE);
		if (!ch->tx_ring[i])
2423
			goto err;
2424

2425
		list_add(&ch->tx_ring[i]->list, &ch->free_tx);
2426 2427 2428 2429 2430
	}

	return 0;

err:
2431
	for (i = 0; i < target->queue_size; ++i) {
2432 2433
		srp_free_iu(target->srp_host, ch->rx_ring[i]);
		srp_free_iu(target->srp_host, ch->tx_ring[i]);
2434 2435
	}

2436 2437

err_no_ring:
2438 2439 2440 2441
	kfree(ch->tx_ring);
	ch->tx_ring = NULL;
	kfree(ch->rx_ring);
	ch->rx_ring = NULL;
2442

2443 2444 2445
	return -ENOMEM;
}

2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472
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;
}

2473
static void srp_cm_rep_handler(struct ib_cm_id *cm_id,
2474
			       const struct srp_login_rsp *lrsp,
2475
			       struct srp_rdma_ch *ch)
2476
{
2477
	struct srp_target_port *target = ch->target;
2478 2479
	struct ib_qp_attr *qp_attr = NULL;
	int attr_mask = 0;
B
Bart Van Assche 已提交
2480
	int ret = 0;
2481 2482 2483
	int i;

	if (lrsp->opcode == SRP_LOGIN_RSP) {
2484 2485
		ch->max_ti_iu_len = be32_to_cpu(lrsp->max_ti_iu_len);
		ch->req_lim       = be32_to_cpu(lrsp->req_lim_delta);
2486 2487 2488 2489 2490 2491

		/*
		 * Reserve credits for task management so we don't
		 * bounce requests back to the SCSI mid-layer.
		 */
		target->scsi_host->can_queue
2492
			= min(ch->req_lim - SRP_TSK_MGMT_SQ_SIZE,
2493
			      target->scsi_host->can_queue);
2494 2495 2496
		target->scsi_host->cmd_per_lun
			= min_t(int, target->scsi_host->can_queue,
				target->scsi_host->cmd_per_lun);
2497 2498 2499 2500 2501 2502 2503
	} else {
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled RSP opcode %#x\n", lrsp->opcode);
		ret = -ECONNRESET;
		goto error;
	}

2504 2505
	if (!ch->rx_ring) {
		ret = srp_alloc_iu_bufs(ch);
2506 2507 2508 2509
		if (ret)
			goto error;
	}

2510
	for (i = 0; i < target->queue_size; i++) {
2511 2512 2513
		struct srp_iu *iu = ch->rx_ring[i];

		ret = srp_post_recv(ch, iu);
2514
		if (ret)
B
Bart Van Assche 已提交
2515
			goto error;
2516 2517
	}

B
Bart Van Assche 已提交
2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531
	if (!target->using_rdma_cm) {
		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;

		ret = ib_modify_qp(ch->qp, qp_attr, attr_mask);
		if (ret)
			goto error_free;
2532

B
Bart Van Assche 已提交
2533 2534 2535 2536
		qp_attr->qp_state = IB_QPS_RTS;
		ret = ib_cm_init_qp_attr(cm_id, qp_attr, &attr_mask);
		if (ret)
			goto error_free;
2537

B
Bart Van Assche 已提交
2538
		target->rq_tmo_jiffies = srp_compute_rq_tmo(qp_attr, attr_mask);
2539

B
Bart Van Assche 已提交
2540 2541 2542 2543 2544 2545
		ret = ib_modify_qp(ch->qp, qp_attr, attr_mask);
		if (ret)
			goto error_free;

		ret = ib_send_cm_rtu(cm_id, NULL, 0);
	}
2546 2547 2548 2549 2550

error_free:
	kfree(qp_attr);

error:
2551
	ch->status = ret;
2552 2553
}

B
Bart Van Assche 已提交
2554 2555 2556
static void srp_ib_cm_rej_handler(struct ib_cm_id *cm_id,
				  struct ib_cm_event *event,
				  struct srp_rdma_ch *ch)
2557
{
2558
	struct srp_target_port *target = ch->target;
2559
	struct Scsi_Host *shost = target->scsi_host;
2560 2561
	struct ib_class_port_info *cpi;
	int opcode;
B
Bart Van Assche 已提交
2562
	u16 dlid;
2563 2564 2565 2566

	switch (event->param.rej_rcvd.reason) {
	case IB_CM_REJ_PORT_CM_REDIRECT:
		cpi = event->param.rej_rcvd.ari;
B
Bart Van Assche 已提交
2567 2568 2569
		dlid = be16_to_cpu(cpi->redirect_lid);
		sa_path_set_dlid(&ch->ib_cm.path, dlid);
		ch->ib_cm.path.pkey = cpi->redirect_pkey;
2570
		cm_id->remote_cm_qpn = be32_to_cpu(cpi->redirect_qp) & 0x00ffffff;
B
Bart Van Assche 已提交
2571
		memcpy(ch->ib_cm.path.dgid.raw, cpi->redirect_gid, 16);
2572

B
Bart Van Assche 已提交
2573
		ch->status = dlid ? SRP_DLID_REDIRECT : SRP_PORT_REDIRECT;
2574 2575 2576
		break;

	case IB_CM_REJ_PORT_REDIRECT:
2577
		if (srp_target_is_topspin(target)) {
B
Bart Van Assche 已提交
2578 2579
			union ib_gid *dgid = &ch->ib_cm.path.dgid;

2580 2581 2582 2583 2584
			/*
			 * Topspin/Cisco SRP gateways incorrectly send
			 * reject reason code 25 when they mean 24
			 * (port redirect).
			 */
B
Bart Van Assche 已提交
2585
			memcpy(dgid->raw, event->param.rej_rcvd.ari, 16);
2586

2587 2588
			shost_printk(KERN_DEBUG, shost,
				     PFX "Topspin/Cisco redirect to target port GID %016llx%016llx\n",
B
Bart Van Assche 已提交
2589 2590
				     be64_to_cpu(dgid->global.subnet_prefix),
				     be64_to_cpu(dgid->global.interface_id));
2591

2592
			ch->status = SRP_PORT_REDIRECT;
2593
		} else {
2594 2595
			shost_printk(KERN_WARNING, shost,
				     "  REJ reason: IB_CM_REJ_PORT_REDIRECT\n");
2596
			ch->status = -ECONNRESET;
2597 2598 2599 2600
		}
		break;

	case IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID:
2601 2602
		shost_printk(KERN_WARNING, shost,
			    "  REJ reason: IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID\n");
2603
		ch->status = -ECONNRESET;
2604 2605 2606 2607 2608 2609 2610 2611 2612
		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)
2613 2614
				shost_printk(KERN_WARNING, shost,
					     PFX "SRP_LOGIN_REJ: requested max_it_iu_len too large\n");
2615
			else
B
Bart Van Assche 已提交
2616 2617
				shost_printk(KERN_WARNING, shost, PFX
					     "SRP LOGIN from %pI6 to %pI6 REJECTED, reason 0x%08x\n",
2618
					     target->sgid.raw,
B
Bart Van Assche 已提交
2619 2620
					     target->ib_cm.orig_dgid.raw,
					     reason);
2621
		} else
2622 2623 2624
			shost_printk(KERN_WARNING, shost,
				     "  REJ reason: IB_CM_REJ_CONSUMER_DEFINED,"
				     " opcode 0x%02x\n", opcode);
2625
		ch->status = -ECONNRESET;
2626 2627
		break;

D
David Dillow 已提交
2628 2629
	case IB_CM_REJ_STALE_CONN:
		shost_printk(KERN_WARNING, shost, "  REJ reason: stale connection\n");
2630
		ch->status = SRP_STALE_CONN;
D
David Dillow 已提交
2631 2632
		break;

2633
	default:
2634 2635
		shost_printk(KERN_WARNING, shost, "  REJ reason 0x%x\n",
			     event->param.rej_rcvd.reason);
2636
		ch->status = -ECONNRESET;
2637 2638 2639
	}
}

B
Bart Van Assche 已提交
2640
static int srp_ib_cm_handler(struct ib_cm_id *cm_id, struct ib_cm_event *event)
2641
{
2642 2643
	struct srp_rdma_ch *ch = cm_id->context;
	struct srp_target_port *target = ch->target;
2644 2645 2646 2647
	int comp = 0;

	switch (event->event) {
	case IB_CM_REQ_ERROR:
2648 2649
		shost_printk(KERN_DEBUG, target->scsi_host,
			     PFX "Sending CM REQ failed\n");
2650
		comp = 1;
2651
		ch->status = -ECONNRESET;
2652 2653 2654 2655
		break;

	case IB_CM_REP_RECEIVED:
		comp = 1;
2656
		srp_cm_rep_handler(cm_id, event->private_data, ch);
2657 2658 2659
		break;

	case IB_CM_REJ_RECEIVED:
2660
		shost_printk(KERN_DEBUG, target->scsi_host, PFX "REJ received\n");
2661 2662
		comp = 1;

B
Bart Van Assche 已提交
2663
		srp_ib_cm_rej_handler(cm_id, event, ch);
2664 2665
		break;

2666
	case IB_CM_DREQ_RECEIVED:
2667 2668
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "DREQ received - connection closed\n");
2669
		ch->connected = false;
2670
		if (ib_send_cm_drep(cm_id, NULL, 0))
2671 2672
			shost_printk(KERN_ERR, target->scsi_host,
				     PFX "Sending CM DREP failed\n");
2673
		queue_work(system_long_wq, &target->tl_err_work);
2674 2675 2676
		break;

	case IB_CM_TIMEWAIT_EXIT:
2677 2678
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "connection closed\n");
2679
		comp = 1;
2680

2681
		ch->status = 0;
2682 2683
		break;

2684 2685 2686 2687 2688
	case IB_CM_MRA_RECEIVED:
	case IB_CM_DREQ_ERROR:
	case IB_CM_DREP_RECEIVED:
		break;

2689
	default:
2690 2691
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled CM event %d\n", event->event);
2692 2693 2694 2695
		break;
	}

	if (comp)
2696
		complete(&ch->done);
2697 2698 2699 2700

	return 0;
}

B
Bart Van Assche 已提交
2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829
static void srp_rdma_cm_rej_handler(struct srp_rdma_ch *ch,
				    struct rdma_cm_event *event)
{
	struct srp_target_port *target = ch->target;
	struct Scsi_Host *shost = target->scsi_host;
	int opcode;

	switch (event->status) {
	case IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID:
		shost_printk(KERN_WARNING, shost,
			    "  REJ reason: IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID\n");
		ch->status = -ECONNRESET;
		break;

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

			if (reason == SRP_LOGIN_REJ_REQ_IT_IU_LENGTH_TOO_LARGE)
				shost_printk(KERN_WARNING, shost,
					     PFX "SRP_LOGIN_REJ: requested max_it_iu_len too large\n");
			else
				shost_printk(KERN_WARNING, shost,
					    PFX "SRP LOGIN REJECTED, reason 0x%08x\n", reason);
		} else {
			shost_printk(KERN_WARNING, shost,
				     "  REJ reason: IB_CM_REJ_CONSUMER_DEFINED, opcode 0x%02x\n",
				     opcode);
		}
		ch->status = -ECONNRESET;
		break;

	case IB_CM_REJ_STALE_CONN:
		shost_printk(KERN_WARNING, shost,
			     "  REJ reason: stale connection\n");
		ch->status = SRP_STALE_CONN;
		break;

	default:
		shost_printk(KERN_WARNING, shost, "  REJ reason 0x%x\n",
			     event->status);
		ch->status = -ECONNRESET;
		break;
	}
}

static int srp_rdma_cm_handler(struct rdma_cm_id *cm_id,
			       struct rdma_cm_event *event)
{
	struct srp_rdma_ch *ch = cm_id->context;
	struct srp_target_port *target = ch->target;
	int comp = 0;

	switch (event->event) {
	case RDMA_CM_EVENT_ADDR_RESOLVED:
		ch->status = 0;
		comp = 1;
		break;

	case RDMA_CM_EVENT_ADDR_ERROR:
		ch->status = -ENXIO;
		comp = 1;
		break;

	case RDMA_CM_EVENT_ROUTE_RESOLVED:
		ch->status = 0;
		comp = 1;
		break;

	case RDMA_CM_EVENT_ROUTE_ERROR:
	case RDMA_CM_EVENT_UNREACHABLE:
		ch->status = -EHOSTUNREACH;
		comp = 1;
		break;

	case RDMA_CM_EVENT_CONNECT_ERROR:
		shost_printk(KERN_DEBUG, target->scsi_host,
			     PFX "Sending CM REQ failed\n");
		comp = 1;
		ch->status = -ECONNRESET;
		break;

	case RDMA_CM_EVENT_ESTABLISHED:
		comp = 1;
		srp_cm_rep_handler(NULL, event->param.conn.private_data, ch);
		break;

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

		srp_rdma_cm_rej_handler(ch, event);
		break;

	case RDMA_CM_EVENT_DISCONNECTED:
		if (ch->connected) {
			shost_printk(KERN_WARNING, target->scsi_host,
				     PFX "received DREQ\n");
			rdma_disconnect(ch->rdma_cm.cm_id);
			comp = 1;
			ch->status = 0;
			queue_work(system_long_wq, &target->tl_err_work);
		}
		break;

	case RDMA_CM_EVENT_TIMEWAIT_EXIT:
		shost_printk(KERN_ERR, target->scsi_host,
			     PFX "connection closed\n");

		comp = 1;
		ch->status = 0;
		break;

	default:
		shost_printk(KERN_WARNING, target->scsi_host,
			     PFX "Unhandled CM event %d\n", event->event);
		break;
	}

	if (comp)
		complete(&ch->done);

	return 0;
}

2830 2831 2832 2833 2834 2835 2836 2837
/**
 * srp_change_queue_depth - setting device queue depth
 * @sdev: scsi device struct
 * @qdepth: requested queue depth
 *
 * Returns queue depth.
 */
static int
2838
srp_change_queue_depth(struct scsi_device *sdev, int qdepth)
2839
{
2840
	if (!sdev->tagged_supported)
2841
		qdepth = 1;
2842
	return scsi_change_queue_depth(sdev, qdepth);
2843 2844
}

B
Bart Van Assche 已提交
2845
static int srp_send_tsk_mgmt(struct srp_rdma_ch *ch, u64 req_tag, u64 lun,
2846
			     u8 func, u8 *status)
2847
{
2848
	struct srp_target_port *target = ch->target;
2849
	struct srp_rport *rport = target->rport;
2850
	struct ib_device *dev = target->srp_host->srp_dev->dev;
2851 2852
	struct srp_iu *iu;
	struct srp_tsk_mgmt *tsk_mgmt;
2853
	int res;
2854

2855
	if (!ch->connected || target->qp_in_error)
2856 2857
		return -1;

2858
	/*
2859
	 * Lock the rport mutex to avoid that srp_create_ch_ib() is
2860 2861 2862
	 * invoked while a task management function is being sent.
	 */
	mutex_lock(&rport->mutex);
2863 2864 2865
	spin_lock_irq(&ch->lock);
	iu = __srp_get_tx_iu(ch, SRP_IU_TSK_MGMT);
	spin_unlock_irq(&ch->lock);
2866

2867 2868 2869
	if (!iu) {
		mutex_unlock(&rport->mutex);

2870
		return -1;
2871
	}
2872

2873 2874
	ib_dma_sync_single_for_cpu(dev, iu->dma, sizeof *tsk_mgmt,
				   DMA_TO_DEVICE);
2875 2876 2877 2878
	tsk_mgmt = iu->buf;
	memset(tsk_mgmt, 0, sizeof *tsk_mgmt);

	tsk_mgmt->opcode 	= SRP_TSK_MGMT;
B
Bart Van Assche 已提交
2879
	int_to_scsilun(lun, &tsk_mgmt->lun);
2880
	tsk_mgmt->tsk_mgmt_func = func;
2881
	tsk_mgmt->task_tag	= req_tag;
2882

2883 2884 2885 2886 2887 2888 2889
	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);

2890 2891
	ib_dma_sync_single_for_device(dev, iu->dma, sizeof *tsk_mgmt,
				      DMA_TO_DEVICE);
2892 2893
	if (srp_post_send(ch, iu, sizeof(*tsk_mgmt))) {
		srp_put_tx_iu(ch, iu, SRP_IU_TSK_MGMT);
2894 2895
		mutex_unlock(&rport->mutex);

2896 2897
		return -1;
	}
2898 2899 2900 2901
	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;
2902
	mutex_unlock(&rport->mutex);
2903

2904
	WARN_ON_ONCE(res < 0);
2905

2906
	return res > 0 ? 0 : -1;
2907 2908
}

2909 2910
static int srp_abort(struct scsi_cmnd *scmnd)
{
2911
	struct srp_target_port *target = host_to_target(scmnd->device->host);
2912
	struct srp_request *req = (struct srp_request *) scmnd->host_scribble;
B
Bart Van Assche 已提交
2913
	u32 tag;
B
Bart Van Assche 已提交
2914
	u16 ch_idx;
2915
	struct srp_rdma_ch *ch;
2916
	int ret;
2917

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

B
Bart Van Assche 已提交
2920
	if (!req)
2921
		return SUCCESS;
B
Bart Van Assche 已提交
2922
	tag = blk_mq_unique_tag(scmnd->request);
B
Bart Van Assche 已提交
2923 2924 2925 2926 2927 2928 2929 2930
	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 已提交
2931
	if (srp_send_tsk_mgmt(ch, tag, scmnd->device->lun,
2932
			      SRP_TSK_ABORT_TASK, NULL) == 0)
2933
		ret = SUCCESS;
2934
	else if (target->rport->state == SRP_RPORT_LOST)
2935
		ret = FAST_IO_FAIL;
2936 2937
	else
		ret = FAILED;
B
Bart Van Assche 已提交
2938 2939 2940 2941 2942
	if (ret == SUCCESS) {
		srp_free_req(ch, req, scmnd, 0);
		scmnd->result = DID_ABORT << 16;
		scmnd->scsi_done(scmnd);
	}
2943

2944
	return ret;
2945 2946 2947 2948
}

static int srp_reset_device(struct scsi_cmnd *scmnd)
{
2949
	struct srp_target_port *target = host_to_target(scmnd->device->host);
B
Bart Van Assche 已提交
2950
	struct srp_rdma_ch *ch;
2951
	int i;
2952
	u8 status;
2953

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

B
Bart Van Assche 已提交
2956
	ch = &target->ch[0];
2957
	if (srp_send_tsk_mgmt(ch, SRP_TAG_NO_REQ, scmnd->device->lun,
2958
			      SRP_TSK_LUN_RESET, &status))
2959
		return FAILED;
2960
	if (status)
2961 2962
		return FAILED;

B
Bart Van Assche 已提交
2963 2964 2965 2966
	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];
2967

B
Bart Van Assche 已提交
2968 2969
			srp_finish_req(ch, req, scmnd->device, DID_RESET << 16);
		}
2970
	}
2971 2972

	return SUCCESS;
2973 2974 2975 2976 2977 2978
}

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

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

2981
	return srp_reconnect_rport(target->rport) == 0 ? SUCCESS : FAILED;
2982 2983
}

2984 2985 2986 2987 2988 2989 2990 2991 2992 2993
static int srp_target_alloc(struct scsi_target *starget)
{
	struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
	struct srp_target_port *target = host_to_target(shost);

	if (target->target_can_queue)
		starget->can_queue = target->target_can_queue;
	return 0;
}

2994 2995 2996 2997 2998 2999
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;

3000
	if (true)
3001 3002 3003 3004 3005 3006
		blk_queue_virt_boundary(sdev->request_queue,
					~srp_dev->mr_page_mask);

	return 0;
}

3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021
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;
}

3022 3023
static ssize_t show_id_ext(struct device *dev, struct device_attribute *attr,
			   char *buf)
3024
{
3025
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3026

3027
	return sprintf(buf, "0x%016llx\n", be64_to_cpu(target->id_ext));
3028 3029
}

3030 3031
static ssize_t show_ioc_guid(struct device *dev, struct device_attribute *attr,
			     char *buf)
3032
{
3033
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3034

3035
	return sprintf(buf, "0x%016llx\n", be64_to_cpu(target->ioc_guid));
3036 3037
}

3038 3039
static ssize_t show_service_id(struct device *dev,
			       struct device_attribute *attr, char *buf)
3040
{
3041
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3042

B
Bart Van Assche 已提交
3043 3044 3045 3046
	if (target->using_rdma_cm)
		return -ENOENT;
	return sprintf(buf, "0x%016llx\n",
		       be64_to_cpu(target->ib_cm.service_id));
3047 3048
}

3049 3050
static ssize_t show_pkey(struct device *dev, struct device_attribute *attr,
			 char *buf)
3051
{
3052
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3053

B
Bart Van Assche 已提交
3054 3055 3056
	if (target->using_rdma_cm)
		return -ENOENT;
	return sprintf(buf, "0x%04x\n", be16_to_cpu(target->ib_cm.pkey));
3057 3058
}

B
Bart Van Assche 已提交
3059 3060 3061 3062 3063
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));

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

3067 3068
static ssize_t show_dgid(struct device *dev, struct device_attribute *attr,
			 char *buf)
3069
{
3070
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
B
Bart Van Assche 已提交
3071
	struct srp_rdma_ch *ch = &target->ch[0];
3072

B
Bart Van Assche 已提交
3073 3074 3075
	if (target->using_rdma_cm)
		return -ENOENT;
	return sprintf(buf, "%pI6\n", ch->ib_cm.path.dgid.raw);
3076 3077
}

3078 3079
static ssize_t show_orig_dgid(struct device *dev,
			      struct device_attribute *attr, char *buf)
3080
{
3081
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3082

B
Bart Van Assche 已提交
3083 3084 3085
	if (target->using_rdma_cm)
		return -ENOENT;
	return sprintf(buf, "%pI6\n", target->ib_cm.orig_dgid.raw);
3086 3087
}

3088 3089 3090 3091
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 已提交
3092 3093
	struct srp_rdma_ch *ch;
	int i, req_lim = INT_MAX;
3094

B
Bart Van Assche 已提交
3095 3096 3097 3098 3099
	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);
3100 3101
}

3102 3103
static ssize_t show_zero_req_lim(struct device *dev,
				 struct device_attribute *attr, char *buf)
3104
{
3105
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3106 3107 3108 3109

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

3110 3111
static ssize_t show_local_ib_port(struct device *dev,
				  struct device_attribute *attr, char *buf)
3112
{
3113
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3114 3115 3116 3117

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

3118 3119
static ssize_t show_local_ib_device(struct device *dev,
				    struct device_attribute *attr, char *buf)
3120
{
3121
	struct srp_target_port *target = host_to_target(class_to_shost(dev));
3122

3123
	return sprintf(buf, "%s\n", target->srp_host->srp_dev->dev->name);
3124 3125
}

B
Bart Van Assche 已提交
3126 3127 3128 3129 3130 3131 3132 3133
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);
}

3134 3135 3136 3137 3138 3139 3140 3141
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);
}

3142 3143 3144 3145 3146 3147 3148 3149
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);
}

3150 3151 3152 3153 3154 3155 3156 3157
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);
}

3158 3159 3160 3161 3162 3163 3164 3165
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");
}

3166 3167 3168 3169
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 已提交
3170
static DEVICE_ATTR(sgid,	    S_IRUGO, show_sgid,		   NULL);
3171 3172
static DEVICE_ATTR(dgid,	    S_IRUGO, show_dgid,		   NULL);
static DEVICE_ATTR(orig_dgid,	    S_IRUGO, show_orig_dgid,	   NULL);
3173
static DEVICE_ATTR(req_lim,         S_IRUGO, show_req_lim,         NULL);
3174 3175 3176
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 已提交
3177
static DEVICE_ATTR(ch_count,        S_IRUGO, show_ch_count,        NULL);
3178
static DEVICE_ATTR(comp_vector,     S_IRUGO, show_comp_vector,     NULL);
3179
static DEVICE_ATTR(tl_retry_count,  S_IRUGO, show_tl_retry_count,  NULL);
3180
static DEVICE_ATTR(cmd_sg_entries,  S_IRUGO, show_cmd_sg_entries,  NULL);
3181
static DEVICE_ATTR(allow_ext_sg,    S_IRUGO, show_allow_ext_sg,    NULL);
3182 3183 3184 3185 3186 3187

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 已提交
3188
	&dev_attr_sgid,
3189 3190
	&dev_attr_dgid,
	&dev_attr_orig_dgid,
3191
	&dev_attr_req_lim,
3192 3193 3194
	&dev_attr_zero_req_lim,
	&dev_attr_local_ib_port,
	&dev_attr_local_ib_device,
B
Bart Van Assche 已提交
3195
	&dev_attr_ch_count,
3196
	&dev_attr_comp_vector,
3197
	&dev_attr_tl_retry_count,
3198
	&dev_attr_cmd_sg_entries,
3199
	&dev_attr_allow_ext_sg,
3200 3201 3202
	NULL
};

3203 3204
static struct scsi_host_template srp_template = {
	.module				= THIS_MODULE,
R
Roland Dreier 已提交
3205 3206
	.name				= "InfiniBand SRP initiator",
	.proc_name			= DRV_NAME,
3207
	.target_alloc			= srp_target_alloc,
3208
	.slave_alloc			= srp_slave_alloc,
3209
	.slave_configure		= srp_slave_configure,
3210 3211
	.info				= srp_target_info,
	.queuecommand			= srp_queuecommand,
3212
	.change_queue_depth             = srp_change_queue_depth,
3213
	.eh_timed_out			= srp_timed_out,
3214 3215 3216
	.eh_abort_handler		= srp_abort,
	.eh_device_reset_handler	= srp_reset_device,
	.eh_host_reset_handler		= srp_reset_host,
B
Bart Van Assche 已提交
3217
	.skip_settle_delay		= true,
3218
	.sg_tablesize			= SRP_DEF_SG_TABLESIZE,
3219
	.can_queue			= SRP_DEFAULT_CMD_SQ_SIZE,
3220
	.this_id			= -1,
3221
	.cmd_per_lun			= SRP_DEFAULT_CMD_SQ_SIZE,
3222
	.use_clustering			= ENABLE_CLUSTERING,
B
Bart Van Assche 已提交
3223
	.shost_attrs			= srp_host_attrs,
3224
	.track_queue_depth		= 1,
3225 3226
};

3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237
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;
}

3238 3239 3240 3241 3242 3243 3244
/*
 * 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.
 */
3245 3246
static int srp_add_target(struct srp_host *host, struct srp_target_port *target)
{
3247 3248 3249
	struct srp_rport_identifiers ids;
	struct srp_rport *rport;

3250
	target->state = SRP_TARGET_SCANNING;
3251
	sprintf(target->target_name, "SRP.T10:%016llX",
3252
		be64_to_cpu(target->id_ext));
3253

3254
	if (scsi_add_host(target->scsi_host, host->srp_dev->dev->dev.parent))
3255 3256
		return -ENODEV;

3257 3258
	memcpy(ids.port_id, &target->id_ext, 8);
	memcpy(ids.port_id + 8, &target->ioc_guid, 8);
3259
	ids.roles = SRP_RPORT_ROLE_TARGET;
3260 3261 3262 3263 3264 3265
	rport = srp_rport_add(target->scsi_host, &ids);
	if (IS_ERR(rport)) {
		scsi_remove_host(target->scsi_host);
		return PTR_ERR(rport);
	}

3266
	rport->lld_data = target;
3267
	target->rport = rport;
3268

3269
	spin_lock(&host->target_lock);
3270
	list_add_tail(&target->list, &host->target_list);
3271
	spin_unlock(&host->target_lock);
3272 3273

	scsi_scan_target(&target->scsi_host->shost_gendev,
3274
			 0, target->scsi_id, SCAN_WILD_CARD, SCSI_SCAN_INITIAL);
3275

3276 3277
	if (srp_connected_ch(target) < target->ch_count ||
	    target->qp_in_error) {
3278 3279 3280 3281 3282 3283
		shost_printk(KERN_INFO, target->scsi_host,
			     PFX "SCSI scan failed - removing SCSI host\n");
		srp_queue_remove_work(target);
		goto out;
	}

3284
	pr_debug("%s: SCSI scan succeeded - detected %d LUNs\n",
3285 3286 3287 3288 3289 3290 3291 3292 3293
		 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:
3294 3295 3296
	return 0;
}

3297
static void srp_release_dev(struct device *dev)
3298 3299
{
	struct srp_host *host =
3300
		container_of(dev, struct srp_host, dev);
3301 3302 3303 3304 3305 3306

	complete(&host->released);
}

static struct class srp_class = {
	.name    = "infiniband_srp",
3307
	.dev_release = srp_release_dev
3308 3309
};

3310 3311
/**
 * srp_conn_unique() - check whether the connection to a target is unique
3312 3313
 * @host:   SRP host.
 * @target: SRP target port.
3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330
 */
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 &&
B
Bart Van Assche 已提交
3331 3332 3333
		    (!target->using_rdma_cm ||
		     memcmp(&target->rdma_cm.dst, &t->rdma_cm.dst,
			    sizeof(target->rdma_cm.dst)) == 0) &&
3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344
		    target->initiator_ext == t->initiator_ext) {
			ret = false;
			break;
		}
	}
	spin_unlock(&host->target_lock);

out:
	return ret;
}

3345 3346 3347 3348 3349
/*
 * 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>
B
Bart Van Assche 已提交
3350 3351 3352
 * or
 *     id_ext=<SRP ID ext>,ioc_guid=<SRP IOC GUID>,
 *     [src=<IPv4 address>,]dest=<IPv4 address>:<port number>
3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363
 *
 * 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,
3364
	SRP_OPT_MAX_CMD_PER_LUN	= 1 << 6,
3365
	SRP_OPT_IO_CLASS	= 1 << 7,
3366
	SRP_OPT_INITIATOR_EXT	= 1 << 8,
3367
	SRP_OPT_CMD_SG_ENTRIES	= 1 << 9,
3368 3369
	SRP_OPT_ALLOW_EXT_SG	= 1 << 10,
	SRP_OPT_SG_TABLESIZE	= 1 << 11,
3370
	SRP_OPT_COMP_VECTOR	= 1 << 12,
3371
	SRP_OPT_TL_RETRY_COUNT	= 1 << 13,
3372
	SRP_OPT_QUEUE_SIZE	= 1 << 14,
B
Bart Van Assche 已提交
3373 3374
	SRP_OPT_IP_SRC		= 1 << 15,
	SRP_OPT_IP_DEST		= 1 << 16,
3375
	SRP_OPT_TARGET_CAN_QUEUE= 1 << 17,
B
Bart Van Assche 已提交
3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386
};

static unsigned int srp_opt_mandatory[] = {
	SRP_OPT_ID_EXT		|
	SRP_OPT_IOC_GUID	|
	SRP_OPT_DGID		|
	SRP_OPT_PKEY		|
	SRP_OPT_SERVICE_ID,
	SRP_OPT_ID_EXT		|
	SRP_OPT_IOC_GUID	|
	SRP_OPT_IP_DEST,
3387 3388
};

3389
static const match_table_t srp_opt_tokens = {
3390 3391 3392 3393 3394 3395 3396
	{ 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" 	},
3397
	{ SRP_OPT_TARGET_CAN_QUEUE,	"target_can_queue=%d"	},
3398
	{ SRP_OPT_IO_CLASS,		"io_class=%x"		},
3399
	{ SRP_OPT_INITIATOR_EXT,	"initiator_ext=%s"	},
3400
	{ SRP_OPT_CMD_SG_ENTRIES,	"cmd_sg_entries=%u"	},
3401 3402
	{ SRP_OPT_ALLOW_EXT_SG,		"allow_ext_sg=%u"	},
	{ SRP_OPT_SG_TABLESIZE,		"sg_tablesize=%u"	},
3403
	{ SRP_OPT_COMP_VECTOR,		"comp_vector=%u"	},
3404
	{ SRP_OPT_TL_RETRY_COUNT,	"tl_retry_count=%u"	},
3405
	{ SRP_OPT_QUEUE_SIZE,		"queue_size=%d"		},
B
Bart Van Assche 已提交
3406 3407
	{ SRP_OPT_IP_SRC,		"src=%s"		},
	{ SRP_OPT_IP_DEST,		"dest=%s"		},
3408
	{ SRP_OPT_ERR,			NULL 			}
3409 3410
};

B
Bart Van Assche 已提交
3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427
static int srp_parse_in(struct net *net, struct sockaddr_storage *sa,
			const char *addr_port_str)
{
	char *addr = kstrdup(addr_port_str, GFP_KERNEL);
	char *port_str = addr;
	int ret;

	if (!addr)
		return -ENOMEM;
	strsep(&port_str, ":");
	ret = inet_pton_with_scope(net, AF_UNSPEC, addr, port_str, sa);
	kfree(addr);
	return ret;
}

static int srp_parse_options(struct net *net, const char *buf,
			     struct srp_target_port *target)
3428 3429 3430 3431
{
	char *options, *sep_opt;
	char *p;
	substring_t args[MAX_OPT_ARGS];
3432
	unsigned long long ull;
3433 3434 3435 3436 3437 3438 3439 3440 3441 3442
	int opt_mask = 0;
	int token;
	int ret = -EINVAL;
	int i;

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

	sep_opt = options;
3443
	while ((p = strsep(&sep_opt, ",\n")) != NULL) {
3444 3445 3446 3447 3448 3449 3450 3451 3452
		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);
3453 3454 3455 3456
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3457 3458 3459 3460 3461 3462 3463
			ret = kstrtoull(p, 16, &ull);
			if (ret) {
				pr_warn("invalid id_ext parameter '%s'\n", p);
				kfree(p);
				goto out;
			}
			target->id_ext = cpu_to_be64(ull);
3464 3465 3466 3467 3468
			kfree(p);
			break;

		case SRP_OPT_IOC_GUID:
			p = match_strdup(args);
3469 3470 3471 3472
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3473 3474 3475 3476 3477 3478 3479
			ret = kstrtoull(p, 16, &ull);
			if (ret) {
				pr_warn("invalid ioc_guid parameter '%s'\n", p);
				kfree(p);
				goto out;
			}
			target->ioc_guid = cpu_to_be64(ull);
3480 3481 3482 3483 3484
			kfree(p);
			break;

		case SRP_OPT_DGID:
			p = match_strdup(args);
3485 3486 3487 3488
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3489
			if (strlen(p) != 32) {
3490
				pr_warn("bad dest GID parameter '%s'\n", p);
3491
				kfree(p);
3492 3493 3494
				goto out;
			}

B
Bart Van Assche 已提交
3495
			ret = hex2bin(target->ib_cm.orig_dgid.raw, p, 16);
3496
			kfree(p);
3497 3498
			if (ret < 0)
				goto out;
3499 3500 3501 3502
			break;

		case SRP_OPT_PKEY:
			if (match_hex(args, &token)) {
3503
				pr_warn("bad P_Key parameter '%s'\n", p);
3504 3505
				goto out;
			}
B
Bart Van Assche 已提交
3506
			target->ib_cm.pkey = cpu_to_be16(token);
3507 3508 3509 3510
			break;

		case SRP_OPT_SERVICE_ID:
			p = match_strdup(args);
3511 3512 3513 3514
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3515 3516 3517 3518 3519 3520
			ret = kstrtoull(p, 16, &ull);
			if (ret) {
				pr_warn("bad service_id parameter '%s'\n", p);
				kfree(p);
				goto out;
			}
B
Bart Van Assche 已提交
3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
			target->ib_cm.service_id = cpu_to_be64(ull);
			kfree(p);
			break;

		case SRP_OPT_IP_SRC:
			p = match_strdup(args);
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
			ret = srp_parse_in(net, &target->rdma_cm.src.ss, p);
			if (ret < 0) {
				pr_warn("bad source parameter '%s'\n", p);
				kfree(p);
				goto out;
			}
			target->rdma_cm.src_specified = true;
			kfree(p);
			break;

		case SRP_OPT_IP_DEST:
			p = match_strdup(args);
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
			ret = srp_parse_in(net, &target->rdma_cm.dst.ss, p);
			if (ret < 0) {
				pr_warn("bad dest parameter '%s'\n", p);
				kfree(p);
				goto out;
			}
			target->using_rdma_cm = true;
3554 3555 3556 3557 3558
			kfree(p);
			break;

		case SRP_OPT_MAX_SECT:
			if (match_int(args, &token)) {
3559
				pr_warn("bad max sect parameter '%s'\n", p);
3560 3561 3562 3563 3564
				goto out;
			}
			target->scsi_host->max_sectors = token;
			break;

3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576
		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;

3577
		case SRP_OPT_MAX_CMD_PER_LUN:
3578
			if (match_int(args, &token) || token < 1) {
3579 3580
				pr_warn("bad max cmd_per_lun parameter '%s'\n",
					p);
3581 3582
				goto out;
			}
3583
			target->scsi_host->cmd_per_lun = token;
3584 3585
			break;

3586 3587 3588 3589 3590 3591 3592 3593 3594
		case SRP_OPT_TARGET_CAN_QUEUE:
			if (match_int(args, &token) || token < 1) {
				pr_warn("bad max target_can_queue parameter '%s'\n",
					p);
				goto out;
			}
			target->target_can_queue = token;
			break;

3595 3596
		case SRP_OPT_IO_CLASS:
			if (match_hex(args, &token)) {
3597
				pr_warn("bad IO class parameter '%s'\n", p);
3598 3599 3600 3601
				goto out;
			}
			if (token != SRP_REV10_IB_IO_CLASS &&
			    token != SRP_REV16A_IB_IO_CLASS) {
3602 3603 3604
				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);
3605 3606 3607 3608 3609
				goto out;
			}
			target->io_class = token;
			break;

3610 3611
		case SRP_OPT_INITIATOR_EXT:
			p = match_strdup(args);
3612 3613 3614 3615
			if (!p) {
				ret = -ENOMEM;
				goto out;
			}
3616 3617 3618 3619 3620 3621 3622
			ret = kstrtoull(p, 16, &ull);
			if (ret) {
				pr_warn("bad initiator_ext value '%s'\n", p);
				kfree(p);
				goto out;
			}
			target->initiator_ext = cpu_to_be64(ull);
3623 3624 3625
			kfree(p);
			break;

3626 3627
		case SRP_OPT_CMD_SG_ENTRIES:
			if (match_int(args, &token) || token < 1 || token > 255) {
3628 3629
				pr_warn("bad max cmd_sg_entries parameter '%s'\n",
					p);
3630 3631 3632 3633 3634
				goto out;
			}
			target->cmd_sg_cnt = token;
			break;

3635 3636
		case SRP_OPT_ALLOW_EXT_SG:
			if (match_int(args, &token)) {
3637
				pr_warn("bad allow_ext_sg parameter '%s'\n", p);
3638 3639 3640 3641 3642 3643 3644
				goto out;
			}
			target->allow_ext_sg = !!token;
			break;

		case SRP_OPT_SG_TABLESIZE:
			if (match_int(args, &token) || token < 1 ||
3645
					token > SG_MAX_SEGMENTS) {
3646 3647
				pr_warn("bad max sg_tablesize parameter '%s'\n",
					p);
3648 3649 3650 3651 3652
				goto out;
			}
			target->sg_tablesize = token;
			break;

3653 3654 3655 3656 3657 3658 3659 3660
		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;

3661 3662 3663 3664 3665 3666 3667 3668 3669
		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;

3670
		default:
3671 3672
			pr_warn("unknown parameter or missing value '%s' in target creation request\n",
				p);
3673 3674 3675 3676
			goto out;
		}
	}

B
Bart Van Assche 已提交
3677 3678 3679 3680 3681 3682 3683 3684
	for (i = 0; i < ARRAY_SIZE(srp_opt_mandatory); i++) {
		if ((opt_mask & srp_opt_mandatory[i]) == srp_opt_mandatory[i]) {
			ret = 0;
			break;
		}
	}
	if (ret)
		pr_warn("target creation request is missing one or more parameters\n");
3685

3686 3687 3688 3689 3690 3691
	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);

3692 3693 3694 3695 3696
out:
	kfree(options);
	return ret;
}

3697 3698
static ssize_t srp_create_target(struct device *dev,
				 struct device_attribute *attr,
3699 3700 3701
				 const char *buf, size_t count)
{
	struct srp_host *host =
3702
		container_of(dev, struct srp_host, dev);
3703 3704
	struct Scsi_Host *target_host;
	struct srp_target_port *target;
3705
	struct srp_rdma_ch *ch;
3706 3707
	struct srp_device *srp_dev = host->srp_dev;
	struct ib_device *ibdev = srp_dev->dev;
B
Bart Van Assche 已提交
3708
	int ret, node_idx, node, cpu, i;
3709
	unsigned int max_sectors_per_mr, mr_per_cmd = 0;
B
Bart Van Assche 已提交
3710
	bool multich = false;
3711 3712 3713 3714 3715 3716

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

3717
	target_host->transportt  = ib_srp_transport_template;
3718 3719
	target_host->max_channel = 0;
	target_host->max_id      = 1;
B
Bart Van Assche 已提交
3720
	target_host->max_lun     = -1LL;
A
Arne Redlich 已提交
3721
	target_host->max_cmd_len = sizeof ((struct srp_cmd *) (void *) 0L)->cdb;
R
Roland Dreier 已提交
3722

3723 3724
	target = host_to_target(target_host);

B
Bart Van Assche 已提交
3725
	target->net		= kobj_ns_grab_current(KOBJ_NS_TYPE_NET);
3726 3727 3728
	target->io_class	= SRP_REV16A_IB_IO_CLASS;
	target->scsi_host	= target_host;
	target->srp_host	= host;
J
Jason Gunthorpe 已提交
3729
	target->lkey		= host->srp_dev->pd->local_dma_lkey;
B
Bart Van Assche 已提交
3730
	target->global_rkey	= host->srp_dev->global_rkey;
3731
	target->cmd_sg_cnt	= cmd_sg_entries;
3732 3733
	target->sg_tablesize	= indirect_sg_entries ? : cmd_sg_entries;
	target->allow_ext_sg	= allow_ext_sg;
3734
	target->tl_retry_count	= 7;
3735
	target->queue_size	= SRP_DEFAULT_QUEUE_SIZE;
3736

3737 3738 3739 3740 3741 3742
	/*
	 * Avoid that the SCSI host can be removed by srp_remove_target()
	 * before this function returns.
	 */
	scsi_host_get(target->scsi_host);

3743 3744 3745
	ret = mutex_lock_interruptible(&host->add_target_mutex);
	if (ret < 0)
		goto put;
3746

B
Bart Van Assche 已提交
3747
	ret = srp_parse_options(target->net, buf, target);
3748
	if (ret)
3749
		goto out;
3750

3751 3752
	target->req_ring_size = target->queue_size - SRP_TSK_MGMT_SQ_SIZE;

3753
	if (!srp_conn_unique(target->srp_host, target)) {
B
Bart Van Assche 已提交
3754 3755
		if (target->using_rdma_cm) {
			shost_printk(KERN_INFO, target->scsi_host,
3756
				     PFX "Already connected to target port with id_ext=%016llx;ioc_guid=%016llx;dest=%pIS\n",
B
Bart Van Assche 已提交
3757 3758
				     be64_to_cpu(target->id_ext),
				     be64_to_cpu(target->ioc_guid),
3759
				     &target->rdma_cm.dst);
B
Bart Van Assche 已提交
3760 3761 3762 3763 3764 3765 3766
		} else {
			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));
		}
3767
		ret = -EEXIST;
3768
		goto out;
3769 3770
	}

3771
	if (!srp_dev->has_fmr && !srp_dev->has_fr && !target->allow_ext_sg &&
3772
	    target->cmd_sg_cnt < target->sg_tablesize) {
3773
		pr_warn("No MR pool and no external indirect descriptors, limiting sg_tablesize to cmd_sg_cnt\n");
3774 3775 3776
		target->sg_tablesize = target->cmd_sg_cnt;
	}

3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800
	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);
	}

3801
	target_host->sg_tablesize = target->sg_tablesize;
3802 3803
	target->mr_pool_size = target->scsi_host->can_queue * mr_per_cmd;
	target->mr_per_cmd = mr_per_cmd;
3804 3805
	target->indirect_size = target->sg_tablesize *
				sizeof (struct srp_direct_buf);
3806 3807 3808 3809
	target->max_iu_len = sizeof (struct srp_cmd) +
			     sizeof (struct srp_indirect_buf) +
			     target->cmd_sg_cnt * sizeof (struct srp_direct_buf);

3810
	INIT_WORK(&target->tl_err_work, srp_tl_err_work);
3811
	INIT_WORK(&target->remove_work, srp_remove_work);
3812
	spin_lock_init(&target->lock);
3813
	ret = ib_query_gid(ibdev, host->port, 0, &target->sgid, NULL);
3814
	if (ret)
3815
		goto out;
3816

B
Bart Van Assche 已提交
3817 3818 3819 3820 3821 3822 3823 3824 3825
	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)
3826
		goto out;
3827

B
Bart Van Assche 已提交
3828 3829 3830 3831 3832 3833
	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());
3834 3835 3836 3837
		const int cv_start = node_idx * ibdev->num_comp_vectors /
				     num_online_nodes();
		const int cv_end = (node_idx + 1) * ibdev->num_comp_vectors /
				   num_online_nodes();
B
Bart Van Assche 已提交
3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853
		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;
3854

B
Bart Van Assche 已提交
3855 3856 3857 3858 3859 3860 3861 3862 3863 3864
			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) {
B
Bart Van Assche 已提交
3865 3866 3867
				char dst[64];

				if (target->using_rdma_cm)
3868 3869
					snprintf(dst, sizeof(dst), "%pIS",
						 &target->rdma_cm.dst);
B
Bart Van Assche 已提交
3870 3871 3872
				else
					snprintf(dst, sizeof(dst), "%pI6",
						 target->ib_cm.orig_dgid.raw);
B
Bart Van Assche 已提交
3873
				shost_printk(KERN_ERR, target->scsi_host,
B
Bart Van Assche 已提交
3874
					     PFX "Connection %d/%d to %s failed\n",
B
Bart Van Assche 已提交
3875
					     ch_start + cpu_idx,
B
Bart Van Assche 已提交
3876
					     target->ch_count, dst);
B
Bart Van Assche 已提交
3877
				if (node_idx == 0 && cpu_idx == 0) {
B
Bart Van Assche 已提交
3878
					goto free_ch;
B
Bart Van Assche 已提交
3879 3880 3881 3882
				} else {
					srp_free_ch_ib(target, ch);
					srp_free_req_data(target, ch);
					target->ch_count = ch - target->ch;
3883
					goto connected;
B
Bart Van Assche 已提交
3884 3885 3886 3887 3888 3889 3890
				}
			}

			multich = true;
			cpu_idx++;
		}
		node_idx++;
3891 3892
	}

3893
connected:
B
Bart Van Assche 已提交
3894 3895
	target->scsi_host->nr_hw_queues = target->ch_count;

3896 3897 3898 3899
	ret = srp_add_target(host, target);
	if (ret)
		goto err_disconnect;

3900
	if (target->state != SRP_TARGET_REMOVED) {
B
Bart Van Assche 已提交
3901 3902
		if (target->using_rdma_cm) {
			shost_printk(KERN_DEBUG, target->scsi_host, PFX
3903
				     "new target: id_ext %016llx ioc_guid %016llx sgid %pI6 dest %pIS\n",
B
Bart Van Assche 已提交
3904 3905
				     be64_to_cpu(target->id_ext),
				     be64_to_cpu(target->ioc_guid),
3906
				     target->sgid.raw, &target->rdma_cm.dst);
B
Bart Van Assche 已提交
3907 3908 3909 3910 3911 3912 3913 3914 3915 3916
		} else {
			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),
				     be16_to_cpu(target->ib_cm.pkey),
				     be64_to_cpu(target->ib_cm.service_id),
				     target->sgid.raw,
				     target->ib_cm.orig_dgid.raw);
		}
3917
	}
B
Bart Van Assche 已提交
3918

3919 3920 3921 3922
	ret = count;

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

3924
put:
3925
	scsi_host_put(target->scsi_host);
B
Bart Van Assche 已提交
3926 3927 3928 3929 3930 3931 3932 3933
	if (ret < 0) {
		/*
		 * If a call to srp_remove_target() has not been scheduled,
		 * drop the network namespace reference now that was obtained
		 * earlier in this function.
		 */
		if (target->state != SRP_TARGET_REMOVED)
			kobj_ns_drop(KOBJ_NS_TYPE_NET, target->net);
3934
		scsi_host_put(target->scsi_host);
B
Bart Van Assche 已提交
3935
	}
3936

3937
	return ret;
3938 3939 3940 3941

err_disconnect:
	srp_disconnect_target(target);

B
Bart Van Assche 已提交
3942
free_ch:
B
Bart Van Assche 已提交
3943 3944 3945 3946 3947
	for (i = 0; i < target->ch_count; i++) {
		ch = &target->ch[i];
		srp_free_ch_ib(target, ch);
		srp_free_req_data(target, ch);
	}
3948

B
Bart Van Assche 已提交
3949
	kfree(target->ch);
3950
	goto out;
3951 3952
}

3953
static DEVICE_ATTR(add_target, S_IWUSR, NULL, srp_create_target);
3954

3955 3956
static ssize_t show_ibdev(struct device *dev, struct device_attribute *attr,
			  char *buf)
3957
{
3958
	struct srp_host *host = container_of(dev, struct srp_host, dev);
3959

3960
	return sprintf(buf, "%s\n", host->srp_dev->dev->name);
3961 3962
}

3963
static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
3964

3965 3966
static ssize_t show_port(struct device *dev, struct device_attribute *attr,
			 char *buf)
3967
{
3968
	struct srp_host *host = container_of(dev, struct srp_host, dev);
3969 3970 3971 3972

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

3973
static DEVICE_ATTR(port, S_IRUGO, show_port, NULL);
3974

3975
static struct srp_host *srp_add_port(struct srp_device *device, u8 port)
3976 3977 3978 3979 3980 3981 3982 3983
{
	struct srp_host *host;

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

	INIT_LIST_HEAD(&host->target_list);
3984
	spin_lock_init(&host->target_lock);
3985
	init_completion(&host->released);
3986
	mutex_init(&host->add_target_mutex);
3987
	host->srp_dev = device;
3988 3989
	host->port = port;

3990
	host->dev.class = &srp_class;
3991
	host->dev.parent = device->dev->dev.parent;
3992
	dev_set_name(&host->dev, "srp-%s-%d", device->dev->name, port);
3993

3994
	if (device_register(&host->dev))
3995
		goto free_host;
3996
	if (device_create_file(&host->dev, &dev_attr_add_target))
3997
		goto err_class;
3998
	if (device_create_file(&host->dev, &dev_attr_ibdev))
3999
		goto err_class;
4000
	if (device_create_file(&host->dev, &dev_attr_port))
4001 4002 4003 4004 4005
		goto err_class;

	return host;

err_class:
4006
	device_unregister(&host->dev);
4007

4008
free_host:
4009 4010 4011 4012 4013 4014 4015
	kfree(host);

	return NULL;
}

static void srp_add_one(struct ib_device *device)
{
4016
	struct srp_device *srp_dev;
4017
	struct ib_device_attr *attr = &device->attrs;
4018
	struct srp_host *host;
4019
	int mr_page_shift, p;
4020
	u64 max_pages_per_mr;
4021
	unsigned int flags = 0;
4022

4023
	srp_dev = kzalloc(sizeof(*srp_dev), GFP_KERNEL);
4024
	if (!srp_dev)
4025
		return;
4026 4027 4028

	/*
	 * Use the smallest page size supported by the HCA, down to a
4029 4030
	 * minimum of 4096 bytes. We're unlikely to build large sglists
	 * out of smaller entries.
4031
	 */
4032
	mr_page_shift		= max(12, ffs(attr->page_size_cap) - 1);
4033 4034
	srp_dev->mr_page_size	= 1 << mr_page_shift;
	srp_dev->mr_page_mask	= ~((u64) srp_dev->mr_page_size - 1);
4035
	max_pages_per_mr	= attr->max_mr_size;
4036
	do_div(max_pages_per_mr, srp_dev->mr_page_size);
4037
	pr_debug("%s: %llu / %u = %llu <> %u\n", __func__,
4038
		 attr->max_mr_size, srp_dev->mr_page_size,
4039
		 max_pages_per_mr, SRP_MAX_PAGES_PER_MR);
4040 4041
	srp_dev->max_pages_per_mr = min_t(u64, SRP_MAX_PAGES_PER_MR,
					  max_pages_per_mr);
4042 4043 4044

	srp_dev->has_fmr = (device->alloc_fmr && device->dealloc_fmr &&
			    device->map_phys_fmr && device->unmap_fmr);
4045
	srp_dev->has_fr = (attr->device_cap_flags &
4046
			   IB_DEVICE_MEM_MGT_EXTENSIONS);
4047
	if (!never_register && !srp_dev->has_fmr && !srp_dev->has_fr) {
4048
		dev_warn(&device->dev, "neither FMR nor FR is supported\n");
4049
	} else if (!never_register &&
4050
		   attr->max_mr_size >= 2 * srp_dev->mr_page_size) {
4051 4052 4053 4054
		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;
	}
4055

4056 4057 4058 4059
	if (never_register || !register_always ||
	    (!srp_dev->has_fmr && !srp_dev->has_fr))
		flags |= IB_PD_UNSAFE_GLOBAL_RKEY;

4060 4061 4062
	if (srp_dev->use_fast_reg) {
		srp_dev->max_pages_per_mr =
			min_t(u32, srp_dev->max_pages_per_mr,
4063
			      attr->max_fast_reg_page_list_len);
4064
	}
4065 4066
	srp_dev->mr_max_size	= srp_dev->mr_page_size *
				   srp_dev->max_pages_per_mr;
4067
	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",
4068 4069
		 device->name, mr_page_shift, attr->max_mr_size,
		 attr->max_fast_reg_page_list_len,
4070
		 srp_dev->max_pages_per_mr, srp_dev->mr_max_size);
4071 4072 4073 4074

	INIT_LIST_HEAD(&srp_dev->dev_list);

	srp_dev->dev = device;
4075
	srp_dev->pd  = ib_alloc_pd(device, flags);
4076 4077 4078
	if (IS_ERR(srp_dev->pd))
		goto free_dev;

B
Bart Van Assche 已提交
4079 4080 4081 4082
	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);
	}
4083

4084
	for (p = rdma_start_port(device); p <= rdma_end_port(device); ++p) {
4085
		host = srp_add_port(srp_dev, p);
4086
		if (host)
4087
			list_add_tail(&host->list, &srp_dev->dev_list);
4088 4089
	}

4090
	ib_set_client_data(device, &srp_client, srp_dev);
4091
	return;
4092 4093 4094

free_dev:
	kfree(srp_dev);
4095 4096
}

4097
static void srp_remove_one(struct ib_device *device, void *client_data)
4098
{
4099
	struct srp_device *srp_dev;
4100
	struct srp_host *host, *tmp_host;
4101
	struct srp_target_port *target;
4102

4103
	srp_dev = client_data;
4104 4105
	if (!srp_dev)
		return;
4106

4107
	list_for_each_entry_safe(host, tmp_host, &srp_dev->dev_list, list) {
4108
		device_unregister(&host->dev);
4109 4110 4111 4112 4113 4114 4115
		/*
		 * Wait for the sysfs entry to go away, so that no new
		 * target ports can be created.
		 */
		wait_for_completion(&host->released);

		/*
4116
		 * Remove all target ports.
4117
		 */
4118
		spin_lock(&host->target_lock);
4119 4120
		list_for_each_entry(target, &host->target_list, list)
			srp_queue_remove_work(target);
4121
		spin_unlock(&host->target_lock);
4122 4123

		/*
4124
		 * Wait for tl_err and target port removal tasks.
4125
		 */
4126
		flush_workqueue(system_long_wq);
4127
		flush_workqueue(srp_remove_wq);
4128 4129 4130 4131

		kfree(host);
	}

4132 4133 4134
	ib_dealloc_pd(srp_dev->pd);

	kfree(srp_dev);
4135 4136
}

4137
static struct srp_function_template ib_srp_transport_functions = {
4138 4139
	.has_rport_state	 = true,
	.reset_timer_if_blocked	 = true,
4140
	.reconnect_delay	 = &srp_reconnect_delay,
4141 4142 4143
	.fast_io_fail_tmo	 = &srp_fast_io_fail_tmo,
	.dev_loss_tmo		 = &srp_dev_loss_tmo,
	.reconnect		 = srp_rport_reconnect,
4144
	.rport_delete		 = srp_rport_delete,
4145
	.terminate_rport_io	 = srp_terminate_io,
4146 4147
};

4148 4149 4150 4151
static int __init srp_init_module(void)
{
	int ret;

4152
	if (srp_sg_tablesize) {
4153
		pr_warn("srp_sg_tablesize is deprecated, please use cmd_sg_entries\n");
4154 4155 4156 4157 4158 4159 4160 4161
		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) {
4162
		pr_warn("Clamping cmd_sg_entries to 255\n");
4163
		cmd_sg_entries = 255;
4164 4165
	}

4166 4167 4168
	if (!indirect_sg_entries)
		indirect_sg_entries = cmd_sg_entries;
	else if (indirect_sg_entries < cmd_sg_entries) {
4169 4170
		pr_warn("Bumping up indirect_sg_entries to match cmd_sg_entries (%u)\n",
			cmd_sg_entries);
4171 4172 4173
		indirect_sg_entries = cmd_sg_entries;
	}

4174 4175 4176 4177 4178 4179
	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;
	}

4180
	srp_remove_wq = create_workqueue("srp_remove");
4181 4182
	if (!srp_remove_wq) {
		ret = -ENOMEM;
4183 4184 4185 4186
		goto out;
	}

	ret = -ENOMEM;
4187 4188 4189
	ib_srp_transport_template =
		srp_attach_transport(&ib_srp_transport_functions);
	if (!ib_srp_transport_template)
4190
		goto destroy_wq;
4191

4192 4193
	ret = class_register(&srp_class);
	if (ret) {
4194
		pr_err("couldn't register class infiniband_srp\n");
4195
		goto release_tr;
4196 4197
	}

4198 4199
	ib_sa_register_client(&srp_sa_client);

4200 4201
	ret = ib_register_client(&srp_client);
	if (ret) {
4202
		pr_err("couldn't register IB client\n");
4203
		goto unreg_sa;
4204 4205
	}

4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218
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;
4219 4220 4221 4222 4223
}

static void __exit srp_cleanup_module(void)
{
	ib_unregister_client(&srp_client);
4224
	ib_sa_unregister_client(&srp_sa_client);
4225
	class_unregister(&srp_class);
4226
	srp_release_transport(ib_srp_transport_template);
4227
	destroy_workqueue(srp_remove_wq);
4228 4229 4230 4231
}

module_init(srp_init_module);
module_exit(srp_cleanup_module);